Gaurav Tiwari
Forum Replies Created
-
I am marking this thread as resolved. Let me know if you need any further help.
This: https://overeview.com/bloomingdales-black-friday/
No matter what the combo is, having duplicate OG data is bad for your website. Are you using any social sharing plugin?
That’s possible. Check if you have added any custom snippets or GP elements.
About the editor preview, that’s normal. WordPress (not Rank Math) doesn’t allow rendering of shortcodes in the editor itself.
Hi, just checked. Which version of RankMath and the plugin are you using?
I have added a shortcode in title: https://share.cleanshot.com/8exhvn
The metadata looks great: https://share.cleanshot.com/tifVOHOn it. RankMath may have pushed an update that caused this. I’ll debug this and come with a solution.
Oh, by custom heading, I thought of h2/h3 etc. tags inside the WYSIWYG Editor.
WPBakery removes shortcodes from vc_custom_heading. Please see: https://stackoverflow.com/questions/72467261/adding-own-short-code-to-vc-custom-heading
I don’t think there is a way to add the shortcode support here as the page builder runs REGEX replace to convert shortcodes to normal text. You can however use the WYSIWYG editor to add shortcode contents.
I just wanted to thank you for working on my feedback. Upgraded to the new version, and it’s fantastic.
I had the issue, and for that silly reason, my site got de-indexed from Bing. But it has recovered a little now.
Maybe my site’s configuration had something to do with it.
I am on 7.4 now. But if you want I can give PHP8.1 a try with HTML Forms Premium activated.Looks like this code was conflicting.
Additionally, this code that I used to disable this ‘masterbar’, isn’t working as well.
function disable_wpcomtoolbars ( $modules ) { if ( isset( $modules['masterbar'] ) ) { unset( $modules['masterbar'] ); } return $modules; } add_filter( 'jetpack_get_available_modules', 'disable_wpcomtoolbars' );
Forum: Plugins
In reply to: [Dynamic Month & Year into Posts] Show Next Month on 20th of Each monthThe plugin had this feature and changed month name from 28th of every month, but I had to remove it due to some reasons. Also, everyone has their own interest at which day the shortcode would render next month.
Since you want to change the month name from 21st, you can use
[seomonth]
shortcode.All you will have to do is to add the following code in your theme’s functions.php file or a plugin like Code Snippets
add_shortcode( 'seomonth' , 'gtrmd_seomonthyear' ); function gtrmd_seomonthyear() { $gtseomonthyear1 = date_i18n("F"); $gtseomonthyear2 = date("F", strtotime ( '+1 month' , strtotime ( $gtseomonthyear1 ) )) ; $gtdtseocheck = date("j"); if($gtdtseocheck > 20){ return "$gtseomonthyear2"; } else{ return "$gtseomonthyear1"; } }
Also see https://gist.github.com/wpgaurav/fe9b9a11e784ca50f988666488de8635
Let me know how this works for you.
I was able to render shortcodes. Just tested new version with WPBakery. Looks good so far. I’ll push an update as soon as possible. Thanks for the heads up.
I haven’t tested it thoroughly with WPBakery but don’t worry, I will do that and push an update soon.
I agree. Looking forward to the next update.
Great! Thanks.
Also, can you please add
lowPrice
andhighPrice
itemprops as well?Thank you so much for the quick followup.