Raju Chakraborty
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Facebook og:image tagHi,
To set the Facebook image for each page or set default image in yoast SEO please visit the following url.
https://kb.yoast.com/kb/custom-open-graph-tags/
- This reply was modified 6 years, 5 months ago by Raju Chakraborty.
Hello graphikjam,
You will find the section in: \wp-content\themes\avada\includes\class-avada-woocommerce.php
– around line 1164 you’ll find:`public function before_cart_table( $args ) {
global $woocommerce;
?>
<div class=”woocommerce-content-box full-width clearfix”>
<?php / translators: Number. / ?>
<h2><?php printf( esc_attr( _n( ‘You Have %d Item In Your Cart’, ‘You Have %d Items In Your Cart’, $woocommerce->cart->get_cart_contents_count(), ‘Avada’ ) ), number_format_i18n( $woocommerce->cart->get_cart_contents_count() ) ); // WPCS: XSS ok. ?></h2>
<?php
}Edit the text here.
Forum: Fixing WordPress
In reply to: Facebook og:image tagHi,
I have checked and found that the facebook is rendering correct image from blog post. I have checked two blogs and they are using the featured image of the respective post.
Please check below screenshots.
https://prnt.sc/l4pcg2
https://prntscr.com/l4pcu3Forum: Fixing WordPress
In reply to: Missing the whole comment system from WordPress dashboardHello bhavinambiw,
Its quite tough to tell the exact solution as I dont have any idea about how this website has been developed. I have suggested you the best possible ways to find out the reason. You may also try to update the wordpress version to its latest. It might solve the issue.
In a separate note, you can paste the code of functions.php & wp-config.php here so that I can review code for the hiding comment section in wordpress admin panel.
Forum: Fixing WordPress
In reply to: Optimizing WordPress for mobile1.You need to compress images and minify js and css files.
2.Install a cache plugin.
3.You need to place all js and css in the footer.
4.Then you have to check site with( https://testmysite.thinkwithgoogle.com/) Google.Forum: Fixing WordPress
In reply to: Missing the whole comment system from WordPress dashboardHii bhavinambiw,
I can understand that comment section is not showing in wordpress sidebar. There are several possibilities for the issue happened:
1. The problem may have been caused by a plugin overwriting the comment functionality. So you may try to deactivate all plugins one by one to check whether this is happening due to a plugin overwrite.
2. Try to activate a default theme, if the issue were solved than the culpite is theme itself.
3. Try to put the below code in the functions.php file to your custom theme.
add_theme_support( 'comments' );
Forum: Fixing WordPress
In reply to: Missing the whole comment system from WordPress dashboardHi,
It seems that one of the plugin is conflicting with the comment section. Try to deactivate plugin one by one and check.
Forum: Fixing WordPress
In reply to: Looking for newsletter plugin which can send emails once a minuteYou can use below plugin: https://www.ads-software.com/plugins/newsletter/
You can setup maximum email per hour. Please refer the screenshot (https://prnt.sc/l2taig)
Forum: Fixing WordPress
In reply to: can’t upload video fileBy default, maximum upload size in WordPress ranges from 2MB to 150MB depending on the settings of your web hosting provider is giving by default. You need to increase media upload size. Please refer the link how to increase media upload size by different process.
https://www.cloudways.com/blog/increase-media-file-maximum-upload-size-in-wordpress/Forum: Fixing WordPress
In reply to: Menu button not working at home page on mobile, tablet onlyHi,
The menu is not working in mobile device due to a section placed improperly in the home page. The section below the logo slider which has been hidden in elementer builder. refer to the screenshot (https://prnt.sc/l2f45f). Remove that section from home page. That will solve the issue.
Forum: Fixing WordPress
In reply to: Cannot Preview Themes, error says Hacked by x-shonaHi,
It might some malicious code has been injected within the website.
Did you scan the site with Wordfence security plugin? first try to scan the website with Wordfence security plugin,
Also do you have latest version of wordpress? If yes, then try to update you wordpress version manually. Here is the link you may follow to update the wordpress version manaully https://www.wordfence.com/learn/how-to-manually-upgrade-wordpress-themes-and-plugins/.
Hope this will solve the issue.
Forum: Fixing WordPress
In reply to: Link to custom post typeYou can use this code in single-design.php page with in the while loop.
<?php // Get the current post type $postType = get_post_type(); echo '<a href="' . get_post_type_archive_link($postType) . '">Back to the design</a>'; ?>
- This reply was modified 6 years, 5 months ago by Raju Chakraborty.