Punit Trivedi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Footer information appearing in Header areaHello @kaleira
I have check you website there is not any content in footer tha’s why not display any content in your footer.please check in your themes or admin side any option are available for footer content.Forum: Fixing WordPress
In reply to: Font size of HTML contentHello @mabufoysal
As per i understanding you query please try this wordPress function
1) if you are store font size in meta then you can fatch and use font size using this function<?php $meta_value = get_post_meta( get_the_ID(), ‘meta_key’, true ); ?>
<h1 style=”font-size: <?php echo $meta_value; ?>”></h1>h1>
2) If you store font size using option in your plugin.
<?php $option_value = get_option( ‘option_key’ ); ?>
hope this help you
Forum: Fixing WordPress
In reply to: Redirecting homepageHello @ristretto6
As per i knowing You can use wp_redirect function for redirect page on specific url.
wp_redirect( $url );
exit;For more understanding please look here.
https://stackoverflow.com/questions/41268138/using-wp-redirect-to-redirect-wordpress-pages
Thanks
- This reply was modified 2 years, 3 months ago by Punit Trivedi.
Forum: Fixing WordPress
In reply to: Auto-update of plugins , now Critical ErrorHello @hibeverly
you need to use your FTP account and disable plugins through the host. Locate your WordPress files and go to wp-content/plugins. now change the folder’s name from plugins to something else.(you can rename main folder of plugin or one by one individual plugin folder inside the plugin folder)
You can rename it to anything, for example, plugins_old. by doing so your plugins will be disabled. Now try to login into your WordPress dashboard. If this fixes the issue then it means one of your plugins is interfering with your login page.
Screenshot : https://prnt.sc/QExS9n-CXxF4
Forum: Fixing WordPress
In reply to: WP-admin UI not working / css not loadingHello @sekibutsu
1) I had the same issue a few months back I tried this and this works for me.
define(‘FORCE_SSL_LOGIN’, false);
define(‘FORCE_SSL_ADMIN’, false);
define( ‘CONCATENATE_SCRIPTS’, false );
define( ‘SCRIPT_DEBUG’, true );
try to load wp-admin with SSL.After reloading it looks OK, maybe after re-login, set SCRIPT_DEBUG to false.
hope this help
- This reply was modified 2 years, 3 months ago by Punit Trivedi.
Forum: Networking WordPress
In reply to: how to get new site visitorsHello @rshay
Please follow this step to increase the visitor traffic.
Forum: Fixing WordPress
In reply to: Can’t access WP Admin after HackHello @smashingsebastian
1) Please debug your website using enable wp_debug from wp-config.php file in root directory.
2) please check in your database file manually there is any malware code added by hacker if any found then remove this code.
3) check using deactivate all plugin one by one you can deactivate your plugin from Cpanel/FTp rename the plugin folder.
- This reply was modified 2 years, 3 months ago by Punit Trivedi.
Forum: Fixing WordPress
In reply to: Problems with Wp-Cron / curlHello @paucompany
you can fix this by using another cron method.
modify wp-config.php ( you can find this file in your root directory ), and BEFORE the line:
/* That’s all, stop editing! Happy blogging. */
add this line:
define(‘ALTERNATE_WP_CRON’ , true );I hope that helps
Or
You may find this thread useful at https://stackoverflow.com/questions/9922562/how-to-resolve-curl-error-7-couldnt-connect-to-hostForum: Fixing WordPress
In reply to: How to use category page as homepageHello @freecorvette
My suggestion would be that you create custom template and used in home page also you can create one shortcode for as per your output or use this plugin.
Forum: Fixing WordPress
In reply to: Help with finding icon source & reducing height pleaseHello (@helenawu)
1 : I understand that there is no option with knowing where your designer downloads the icons and used in website but there many website are available where you can find icon and create icon as per your requirement.
2 : And for your second question you have set section height option are are available in elementor.
Here is complate guid for section.
Forum: Fixing WordPress
In reply to: How to edit Search result website description?Hello (@helenawu)
Please check in your website you have installed the yoast plugin. you will change that description from individual page. for more detail Please check the Screenshot.
Note: When you change this description it will take some time for changes in google search engine.
Forum: Fixing WordPress
In reply to: need help with this errorHello (@insurancesnearme)
You are using a plugin that extends Elementor functionality the old way.
Deactivate the plugin one-by-one until you find the plugin. Contact the plugin author and ask him to update the code.
The plugin author should to replace the _register_controls() method with register_controls() removing the _ prefix (this was changed in Elementor 3.1.0).`
Forum: Developing with WordPress
In reply to: Query Loop Taxonomy Logic AND ORHello (@angiepunkt)
You can get result using “category__and”.$args=array(
‘posts_per_page’ => 50,
‘post_type’ => ‘my_custom_type’
‘category__and’ => array($cat_id),
);
$wp_query = new WP_Query( $args );Forum: Fixing WordPress
In reply to: WordPress not showing latest version availableHello (@jlhenkle)
There are 2 possibilities for hide the notification
1) Using some plugin
2) By using hook,Possible hook.
pre_site_transient_update_core
pre_site_transient_update_plugins
pre_site_transient_update_themesForum: Fixing WordPress
In reply to: Cannot Access my SiteHello (@lizardjuice)
I have review your website and there Issue in SSl certificate issue. so please contact to your host.please check bellowed Screenshot for more information.
Thanks