I have read https://webappick.helpscoutdocs.com/article/28-how-to-use-command-to-format-attribute-output but still don’t understand how to replace a value with a hardcoded value.
What I want to do is change all the availability status “on backorder” to “preorder” or maybe “in stock” in the feed. Otherwise Google Merchant Center won’t accept the value.
What string can I use to make this happen in Woo Feed?
Many thanks,
Cristoffer
Dankefür die Hilfe
]]>https://www.ads-software.com/plugins/custom-stock-widget/
]]>We need the popular posts list to show the title of the post, but not the author name or tags, which it currently shows. (The format is basically ‘title – by author – tags’).The previous developer seems to have been trying to do this via a string replace, but it wasn’t working:
if(!$ispage) { $title = str_replace('- by %author_name% - %tag%','',$title);
$gaPopularPosts .= '<li><a href="'.$url.'">' . $title . '</a></li>';
$thispage++;
}
Any thoughts on what he was doing wrong, or what I can do to fix it?
Thanks in advance for any help anyone can provide.
]]>i have a problem i cant figure out..
I want to create shortcode like [gsm $brand=8810]
that creates a link like this: https://gsm.com/8810
This is what i came up with, but it aint working:
function gsm_url($brand) {
echo "<a href='https://gsm.com/$brand>$brand'</a>";
}
add_action('gsm','gsm_url');
do_action('gsm');
Where do i go wrong?
]]>currently im using:
<?php wp_link_pages(‘before=&after=‘); ?>
which gives me a little line of links:
1 2 3 4 5 etc.
what i’d really like is to be able to replace “1” with “words” and then start with 1,2,3,4 etc. so i end up with the links:
words 1 2 3 4 etc.
I’ve tried doing a PHP string replace but no luck…
Is there ANY way i can do this?
any help much appreciated.
cheers.
]]>