specvis
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Make unavailable variations grey outbump
Forum: Plugins
In reply to: [WooCommerce] Make unavailable variations grey outbump,
Could really use a bit of help on this pleaseForum: Fixing WordPress
In reply to: unknown menu – help neededthink i found it in the theme>editor
<?php
/**
* Sidebar cateogyr menu
*
* @package maritime
*/
?><div class=”container”>
<div class=”row”>
<div class=”col-xs-12 col-sm-3″>
<ul id=”menu-category-menu2″>
<?php$taxonomy = ‘product_cat’;
$orderby = ‘name’;
$show_count = 0;
$pad_counts = 0;
$hierarchical = 1;
$title = ”;
$empty = 0;$args = array(
‘taxonomy’ => $taxonomy,
‘orderby’ => $orderby,
‘show_count’ => $show_count,
‘pad_counts’ => $pad_counts,
‘hierarchical’ => $hierarchical,
‘title_li’ => $title,
‘hide_empty’ => $empty
);
$all_categories = get_categories( $args );
foreach ($all_categories as $cat) {
if($cat->category_parent == 0) {
$category_id = $cat->term_id;
?>-
<?php echo ‘slug, ‘product_cat’) .'”>’. $cat->name .’‘; ?>
<?php
$children = get_term_children( $category_id, ‘product_cat’ );
if ( count( $children ) ) {
?>
-
<?php
- <?php echo ‘slug, ‘product_cat’) .'”>’. $child->name .’‘; ?>
foreach( $children as $child_id ) {
$child = get_category( $child_id );
?><?php
}
?><?php
}
?><?php
if ($cat->slug == ‘combination-signs’) {
wp_nav_menu( array(
‘menu’ => ‘Category Menu’,
));
}
}
}
?></div>
Forum: Fixing WordPress
In reply to: unknown menu – help neededthink what i’m being asked to do might not be possible.
I believe the menu is created in woo-commerce somehow. Every menu appears to be a product category.
My issue now is that I’ve been asked to add a non product category (info page) to that menu and im not sure if its possible
- This reply was modified 7 years, 5 months ago by specvis.
Forum: Fixing WordPress
In reply to: unknown menu – help neededevery menu other than the one i need
Forum: Fixing WordPress
In reply to: unknown menu – help neededalas
“The theme you are currently using isn’t widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions.”
Forum: Plugins
In reply to: [WooCommerce] Pricing Rules for variationsthanks I’m in touch with them also. The issues I was having are also present on their demo site.
Forum: Plugins
In reply to: [WooCommerce] Pricing Rules for variationsthanks for the lead to smart manager it looks like the right tool for the job, but a few issues are hampering me pulling the trigger.
Bulk selection appears limited to number of items viewing on one page. i need to do bulk selection of 100’s of variations, well over one page worth.
advanced search is limited to the amount of search criteria one can add, eg:
‘Name contains x, Name contains y” will work but
‘Name contains x, Name contains y, name contains z” will not show any results.Everytime I add the third criteria I get not search result. Obviously I’m search for things that will/should return positive results.
Forum: Plugins
In reply to: [WooCommerce] Pricing Rules for variationsthanks for taking the time to give such a detailed answer. I’m still looking into the options you mentioned.
As you have a lot of knowledge about this, wondered if you have had any idea what was used (or what i could use) if i wanted to arrange the pricing like the same as this site.
Forum: Plugins
In reply to: [WooCommerce] Pricing Rules for variationsdid that work for you?
Forum: Plugins
In reply to: [WooCommerce] Pricing Rules for variationsno, sorry. fixed now
https://brightonprintonline.co.uk/product/flyers-leaflets/
- This reply was modified 8 years, 2 months ago by specvis.
Forum: Plugins
In reply to: [WooCommerce] Pricing Rules for variationsthanks for the offer, the test page I created is
https://brightonprintonline.co.uk/?post_type=product&p=2358&preview=true
Forum: Plugins
In reply to: What plugin do i know to make thisJust going to bump this one a bit. Hope that is allowed
-
<?php echo ‘slug, ‘product_cat’) .'”>’. $cat->name .’‘; ?>