marcel1985
Forum Replies Created
-
Can you help me out?
HI,
No, sorry, it works a different way.
We are selling underwear and socks (sucbscription) so they receive socks or underwear every month.I want to give discount on the first one, but not on the second one.
So a few examples.For each product, if they add 1 to the cart it’s $10 in stead of $16,99.
If they add 2 t the cart it’s $26,99 in stead of $33,98If they add multiple products, every first one gets a discount.
Thanks!
Forum: Plugins
In reply to: [Country IP Specific Redirections] Plugins not workingI have the same issue, it keeps reloading
Forum: Plugins
In reply to: [Facebook Publish] multiple posts to facebookI have the same issue, when publishing I’ll get 2 posts on FB, one with the custom permalink and one with the ?p= link (wich says, page 404).
How can I fix this?
Forum: Plugins
In reply to: [Multi-column Tag Map] Show only category related to that postYes!! I even found this code:
[Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your posted code has been permanently damaged/corrupted by the forum’s parser.]
<?php $categories = get_the_category(); $separator = ' '; $output = ''; if($categories){ foreach($categories as $category) if($category->parent == 84) { $output .= '<a>term_id ).'" title="' . esc_attr( sprintf( __( "View all posts in %s" ), $category->name ) ) . '">'.$category->cat_name.'</a>'.$separator; } echo trim($output, $separator); } ?>
That would be the best option cause I can exlcude some.. But I don’t know how and where to put it so it displays on the bottom of Every Post! Perhaps someone can help me putting this in a sort of shortcode?