nunziorash
Forum Replies Created
-
Forum: Plugins
In reply to: [CMB2] is this plugin still supported?Great, then I’ll continue using it.
I didn’t find any problems using it either. I saw that writing and I got worried.Thanks for the reply
In the footer text was the woocommerce default tag {site_title}.
With woocomerce emails the tag works, with the plugin no.By removing the woocommerce tag, everything works
I hid the other stuff because it works fine.
I had already tried to do several tests but they don’t work.
ShopMagic version 2.12.1.Forum: Plugins
In reply to: [CMB2] Change siteI confirm.
If the replacement I do only do the plugin better search and replace, the metaboxes remain compiled.Thanks
Forum: Plugins
In reply to: [CMB2] Change siteOK, I will try.
At the next site I do I try and if there is still the problem I will write to you
Forum: Plugins
In reply to: [CMB2] Change siteI first do an
UPDATE wp_posts SET guid = replace(guid, ‘https://www.oldurl’,’https://www.newurl’);
UPDATE wp_posts SET post_content = replace(post_content, ‘https://www.oldurl’, ‘https://www.newurl’);
UPDATE wp_postmeta SET meta_value = replace(meta_value,’https://www.oldurl’,’https://www.newurl’);Then I look for the old url in the database and replace it.
And then I use better search and replace plugin.
In the database then the old url localhost no longer appears anywhere.
But when I go to metabox then, I find the fields empty.
Forum: Plugins
In reply to: [WooCommerce] Product prepending to attribute nameYes it was a plugin problem I’m using.
I solved this by changing this
$attribute_name = $attr_tax->labels->name;
with this
$attribute_name = $attr_tax->labels->singular_name;Thanks