jelly_bean
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Short-codes display buttons with a strick-throughThis might be a css issue. Have you had a look at it using Firebug?
Forum: Plugins
In reply to: [WooCommerce] Layered Navigation Hide Child until Parent is activeOk, got it working. I got mixed up to begin with. These are not parent and child categories at all. They are stand alone attributes.
I have put my layered navigation in an accordion and each accordion tab contains a sidebar. I’ll miss out the accordion code for this example to make it easier to read:
global $_chosen_attributes; if ( ! is_null( $_chosen_attributes ) ) { foreach ( $_chosen_attributes as $taxonomy => $data ) { } } if ($taxonomy == 'pa_country'){ if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('region-sidebar') ) : endif; }
If the chosen taxonomy is country then show the region tab.
Forum: Plugins
In reply to: [WooCommerce] Layered Navigation Hide Child until Parent is activeReally? Has no one ever needed to do this?
Forum: Plugins
In reply to: [WooCommerce] page option on home pageWhich template file are you using to show these products on your page? Put this code in that template.
Forum: Fixing WordPress
In reply to: Editing home page help – nOObieHave you thought about displaying your images as a slider on the home page? These could link to individual posts about your recent trips. The easiest way would probably be to use a slider/carousel plugin.
How do you access your home page? Is there a page you edit in the admin area or are you using ftp?
Forum: Fixing WordPress
In reply to: How To Remove Tags from PostsHave you checked the widgets?
If you go to the side menu in Admin select Appearance > Widgets
See if you can remove the Tag Cloud widget.
Forum: Fixing WordPress
In reply to: How To Remove Tags from PostsThat all depends on where your tags are on the page and what theme you are using? You will need to provide more information.
Forum: Fixing WordPress
In reply to: Comment ActivationHave you checked your settings?
In Admin go to Settings > Discussion
Check “Allow people to post comments on new articles”Check individual posts in Admin. Click on Screen Options and check Discussion and scroll down and select Allow Comments.
Failing that you probably don’t have the code included in your template files to allow comments.
Add this at the bottom of the template page you want comments to be enabled on:
<?php comments_template(); ?>
Forum: Plugins
In reply to: [WooCommerce] page option on home pageYou need to add pagination to the home page template.
Try and add this to call the woocommerce pagination:
<?php do_action( 'woocommerce_after_shop_loop' ); ?>
Sorry, I should have updated. I can’t remember what exactly the problem was, but it didn’t work. I gave up and I am using the layered navigation that comes with WordPress now and using attributes rather than categories for my products.
Forum: Fixing WordPress
In reply to: Bootstrap nested tabs inside loopUsing the title as a unique reference for the tab names solves the problem.
i.e. This tab title:
<a href="#floorplan-<?php print strtolower(get_the_title()); ?>
Relates to this tab id:
<div role="tabpanel" class="tab-pane fade in clearfix" id="floorplan-<?php print strtolower(get_the_title()); ?>">
Forum: Fixing WordPress
In reply to: Bootstrap nested tabs inside loopI can’t edit this. I have noticed that I used the original names from the tab file I copied and the aria-controls should not be “profile” or “kitchen”. I’ve update that, but it’s still not working.
Well, it does work on the first default tab, but not when I select a different outer tab.
Forum: Fixing WordPress
In reply to: Custom archive post type page as sub pageOk, the only way I could find around this was to turn the archive page into a template.
Forum: Plugins
In reply to: [Event Organiser] Where to place taxonomy-event-category.php to overrideThat’s where I left it last night and I’ve come back to the site this morning and it’s working fine.
Thanks for the confirmation.
Forum: Reviews
In reply to: [Accordion Shortcodes] Easy to useHi
Here’s what I did (although I might do it differently now and use bootstrap glyphicons)
.accordion h3.accordion-title { border-bottom: 1px dashed #d6d6d6; margin-bottom: 10px; padding-bottom: 10px; cursor: pointer; } .main-content .accordion h3.accordion-title { background: url("../images/arrow.png") no-repeat scroll left 7px rgba(0, 0, 0, 0); padding-left: 15px; } .accordion-content p { font-weight: 300 !important; margin-bottom: 22px !important; padding: 0 !important; } .accordion-content p:before { border: medium none !important; height: auto !important; }