niclamarino
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] What happens to existing subscriptions when edit?Hi, no, not exactly.
Basically, I need to edit the subscription frequency of a product (from month to every 6 weeks). And wanted to know what would happen to the existing subscriptions.
I have WooCommerce Subscriptions plugin installed.
______
In my specific case, I have a product which has a variation with a subscription price every month, but that was called “Every 6 weeks” by accident. So the customers were aspecting to be charged every 6 weeks instead of every month.I now need to fix this issue by getting creating two new variables, for every month and one every 6 weeks.
What would happen to the customers who started the subscriptions before this edit? Will I need to manually change the subscription?- This reply was modified 1 year, 9 months ago by niclamarino.
Forum: Plugins
In reply to: [Yoast SEO] Sitemap shows both old url and new urlHi, unfortunately that didn’t solve the issue.
Here’s the sitemap link: https://www.muggyweld.com/knowledge-video-sitemap.xml
Old url https://www.muggyweld.com/video/aluminum-boat-welding
New url https://www.muggyweld.com/video/brazing-aluminum-boat/As you can see they are both in the sitemap and Semrush is marking it as an error due to the “redirect”
Seems like this redirect would be the problem for both my issues then, I’ll try to fix it using Ajax then ??
Sure it’s https://www.artimespace.net/
I’ve checked it out already, I thought it was another form. That worked ?? Thank you!
Hi, thank you for your response. Unfortunately my issue hasn’t been solved. The page I am referring to is this for example: https://www.artimespace.net/artisti/van-gogh/
If I click on the “Contact the artist” button I can correctly open a popup and see the contact form (I’ve created here a widgetized area). But nothing is shown in Safari(Popups open, but it’s blank). Link to working screenshot: https://s9.postimg.cc/lgoq7lipr/Screen_Shot_2018-04-11_at_21.42.49.png
Here’s the code:
<button class="reg">Contact the Artist</button> <div class="pop"> <span>?</span> <?php if ( is_active_sidebar( 'contact_vendor' ) ) : ?> <?php dynamic_sidebar( 'contact_vendor' ); ?> <?php endif; ?> </div> <script> $(document).ready(function () { $("button").click(function () { $(".pop").fadeIn(300); positionPopup(); }); $(".pop > span").click(function () { $(".pop").fadeOut(300); }); }); </script>
@itzmekhokan I added the whole code to my functions.php but the Vendor’s name is still displayed below the Product name
Hello, thanks for your help but unfortunately it still doesn’t work :/
I’ve tried adding the snippet to my homepage.php and nothing is shown…and adding it to my functions and no changes.Hi,
if it’s not an issue I’d like to get the exact code as I said I am a newbie.So I’ll explain what I’d like to do:
So I’ve a slideshow on my homepage which displays the products using this code:
$args = array( 'post_type' => 'product', 'posts_per_page' => 8 ); $loop = new WP_Query( $args ); if ( $loop->have_posts() ) { while ( $loop->have_posts() ) : $loop->the_post(); woocommerce_get_template_part( 'content', 'product' ); endwhile; } else { echo __( 'No products found' ); } wp_reset_postdata(); ?>
I’d like to add the Vendor’s name before the Product title. At the moment, on the products archieve it’s exactly like that (Vendor’s name before the Product). So, my issue is with this slideshow I have on the homepage.
Many thanks
- This reply was modified 7 years ago by niclamarino.
Hi, thanks for the reply, I’ve tried but it doesn’t work…
I’ve added the code to functions.php and then added the hook to my page template file but no changes. I am newbie with php so I am not sure if everything is correct. Am I doing anything wrong?Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Brands DescriptionHi, I’ve tried to add this code but I receive an error back.
My brand description isn’t showing anywhere, please help