Vignesh Pichamani
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Category arrayYou have to pass the parent category id to get the child of corresponding categories.
$categories=get_categories( array( 'parent' => $cat_id ) );
Thank you,
Vignesh Pichamani.Forum: Fixing WordPress
In reply to: Site fails to load after Theme changeHi,
Here is the step to access the file manager in cpanel.
https://roadtoblogging.com/cpanel-file-manager-wordpress/
Please navigate to wp-content folder
wp-content/themes/
Find the folder name of your theme and just rename it like “currenttheme-old” and then try to access the backend yousite.com/wp-admin (Once rename the theme it will revert back to default theme of wordpress once you access backend theme explorer).
Thank you,
VigneshForum: Fixing WordPress
In reply to: Not exactly fixing, searching for an explanation, theoretic questionHi,
See that was added long time back not sure about which version. For to get rid of that there is a solution
You can also use this plugin if at you want the quickest solution.
https://www.ads-software.com/plugins/disable-url-autocorrect-guessing/
Thank you,
Vignesh Pichamani.Forum: Fixing WordPress
In reply to: Failed to extract files from zipfolderHello,
Please contact Godaddy as this error denote is nothing with wordpress, there is some other issue happen in your hosting panel. Contact godaddy support so that they can help you with your matter.
Thank you,
Vignesh Pichamani.Forum: Fixing WordPress
In reply to: Site fails to load after Theme changeHello,
Did you rename theme from cpanel?
Login to cpanel won’t help without rename theme folder that’s why.
- This reply was modified 6 years, 10 months ago by Vignesh Pichamani.
Forum: Fixing WordPress
In reply to: product keywordsHello,
Can you please elaborate your questions as it is hard to reply back with proper guidelines.
We don’t know which plugin that you used?
We don’t know what you referred as keywords is it tags?so that one or other can help you with your queries.
Thanks,
Vignesh PichamaniForum: Fixing WordPress
In reply to: Getting Fatal error msg on my wordpress siteHello there,
It’s look like that error as you posted here and error in your site seems different, but one thing for sure it is more like php version compatibility(i think that you upgraded 7.0+ of php version)
Please contact your theme/plugin developers to rectify this issue.
Thanks,
Vignesh Pichamani.Forum: Fixing WordPress
In reply to: Site fails to load after Theme changeHello there,
We guess there is some problem with your theme? Is that you customized something in your theme
functions.php
. No worries still you can change the theme via ftp or cpanel. If you have the credentials then it is easy to change the theme.If you have FTP Credentials then
Login using Filezilla Client navigate to the folder of theme which is in
wp-content/themes/
Find the folder name of your theme and just rename it like “currenttheme-old” and then try to access the backend yousite.com/wp-admin (Once rename the theme it will revert back to default theme of wordpress once you access backend theme explorer).
If you have Cpanel Credentials then
Login using your credentials navigate to File manager section where try to find the theme folder inside wp-content/theme/ and then rename it like i said earlier for ftp.
If you still facing an issue please provide the last 5 error log information here.
Thank you,
Vignesh Pichamani.Forum: Fixing WordPress
In reply to: Network Admin URL issue …… I think!Hello there,
Are you tried anything like resetting the wordpress with any plugins? if so then that plugin is not compatible with multisite environment. You have to remove/create the new database from cpanel to solve this issue.
That will help in your case.
Thank you,
Vignesh PichamaniForum: Fixing WordPress
In reply to: Animated GIF not centered horizontally in web page viewHello there,
Link returns 404 error please post the correct url
We are sorry. The page you are looking for cannot be found.
Thanks.
Forum: Developing with WordPress
In reply to: Primary categoryHi,
Please check out this link which will give you some idea of how to create the category https://v2.wp-api.org/reference/categories/ once you create the category want to assign that category to post then update post api will help
https://v2.wp-api.org/reference/posts/Hope it helps.
Thanks,
Vignesh Pichamani.Forum: Developing with WordPress
In reply to: Save jquery to custom fieldHi,
As per your query you cannot save variable value of jquery to php unless if use any hidden input field.
Assume you have metabox in there register a input type with hidden field like
<input type="hidden" id="metavalue" name="metavalue" value=""/>
and then add the value to input field via js
jQuery('your id').on('change',function() { jQuery('#metavalue').val(your value); });
On upon save it post the metavalue so that you can make use of that data.
Note: Above code is just illustration of how it can be done.
Hope it helps.
Forum: Fixing WordPress
In reply to: Re-add multiple months of images, back to the media managerHi,
No way you can restore images which you deleted mistakenly. But least chance please check with your hosting provider to see if any backup has taken earlier with prior to delete date.Note : If you know how to handle cpanel then please navigate to backup section to see if any backup created last in your server which will help you to restore the files which you deleted mistakenly.
Hope it helps.
Thanks,
Vignesh PichamaniForum: Fixing WordPress
In reply to: [gallery] How to change header background colorAdvise me if am wrong!!!? Do you want to customize coming soon plugin of mojo marketplace? if not enable others to see your original site, one or other way people will help you out ??
Forum: Fixing WordPress
In reply to: Line spacingJust do add the style in style.css of your theme files
p,span { line-height:24px; }