YOELO
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Product creation without page.I do need product pages and a full store, I’d like to add products I create to these pages instead of Woocommerce creating it’s own shop and product pages which in my opinion aren’t very good for navigation and styling within a custom theme.
I’m sure it work great with WooThemes.
Forum: Fixing WordPress
In reply to: Shopping Cart With Custom Features:My website has custom categories and sub pages that I’d like products to which are linked to the cart/checkout.
Forum: Fixing WordPress
In reply to: Shopping Cart With Custom Features:Mike, I’d like to add a Woocommerce product to my own custom pages without Woocommerce creating and pushing/linking to it’s own example.com/product/productname page. Can this be done?
Forum: Fixing WordPress
In reply to: How to add H1 to this codeThank you Samuel, it works great. I added a slash to the ending <H1> 🙂
Forum: Plugins
In reply to: [WooCommerce] Manual Product integrationThanks but that just adds a picture/link to the WooCommerce-created product page.
Forum: Fixing WordPress
In reply to: Shopping Cart With Custom Features:Alas WooCommerce doesn’t work with custom themes and pushes its premium themes.
Still looking for a solution
Forum: Fixing WordPress
In reply to: Page link treePerfect thank you so much. I used:
<?php //if the post has a parent if($post->post_parent){ //collect ancestor pages $relations = get_post_ancestors($post->ID); //get child pages $result = $wpdb->get_results( "SELECT ID FROM wp_posts WHERE post_parent = $post->ID AND post_type='page'" ); if ($result){ foreach($result as $pageID){ array_push($relations, $pageID->ID); } } //add current post to pages array_push($relations, $post->ID); //get comma delimited list of children and parents and self $relations_string = implode(",",$relations); //use include to list only the collected pages. $sidelinks = wp_list_pages("title_li=&echo=0&include=".$relations_string); }else{ // display only main level and children $sidelinks = wp_list_pages("title_li=&echo=0&depth=1&child_of=".$post->ID); } if ($sidelinks) { ?> <h2><?php the_title(); ?></h2> <ul> <?php //links in <li> tags echo $sidelinks; ?> </ul> <?php } ?>Forum: Fixing WordPress
In reply to: Shopping Cart With Custom Features:Hi Debabrata, thank you very much I’ll check them out.
Forum: Plugins
In reply to: [Simple Shopping Cart] Discount offersThanks mbrsolution,
would you know if it’s possible to reduce price after a certain value or quantity in the cart using the discount feature? Although I’m assuming this feature is just for coupon codes.
Forum: Fixing WordPress
In reply to: post thumbnail disappearThat’s cool.
And your goal is to show a small paragraph with a thumbnail picture only (not full post)?
What theme are you using?
Forum: Fixing WordPress
In reply to: Blog HeaderForum: Fixing WordPress
In reply to: Blog HeaderWPyogi – What changes can be lost by editing a child theme?
financialfergy – I’m pretty sure you don’t have to create another child theme to achieve what you’re trying to accomplish.
Forum: Fixing WordPress
In reply to: Blog HeaderI don’t think you need to make a child theme.
You should be able to fix this via admin panel and no core files need to be touched.
Forum: Fixing WordPress
In reply to: Blog HeaderDo you have a page.php file in your theme that can be accessed via appearance> editor>?
Forum: Fixing WordPress
In reply to: how to change timezone UTC time to Local time ?Have you tried Admin> Settings> Timezone?