alqin
Forum Replies Created
-
Forum: Reviews
In reply to: [Custom Content Shortcode] Cool ideeaYep, you’ve read my thoughts. Fast response, fast update, great job.
I wish I could be that fast.
It looks like is not all the documentation yet, but I’m sure You know exactly what is there and what else could be there.
I wish more developers be like you, me included.
Thanks!
By the way this is how is solved my problem (maybe will help someone):
<?php $categories = get_categories(array('type'=>'ai1ec_event','taxonomy' =>'events_categories')); foreach ($categories as $category) { $option = '<div>'; $option .= '<a class="ai1ec-load-view ai1ec-category" href="#">'; $option .= $category->cat_name; $option .= ' ('.$category->category_count.')'; $option .= '</a>'; $option .= '</div>'; echo $option; } ?>
I used “visual event” extension for chrome https://chrome.google.com/webstore/detail/visual-event/pbmmieigblcbldgdokdjpioljjninaim and find out that tickbox.js is outside plugin’s directory, in wp_includes/js.
Forum: Plugins
In reply to: [eShop] [Plugin: eShop] NewbieWith the image I figure it out.
How do you add shipping to total price?Forum: Plugins
In reply to: [eShop] [Plugin: eShop] NewbieOn the page product how do you add images? Normally as you would add them to a page?
The futured image is shown on product listing and if I want to see it in product page I have to inserted in text area. I this so?Forum: Plugins
In reply to: [eShop] [Plugin: eShop] NewbieGlad I could help.
Thanks for a great plugin and support.Forum: Plugins
In reply to: [eShop] [Plugin: eShop] NewbieI just discovered that on this page:
https://quirm.net/wiki/eshop/additional-plugins-and-code-snippets/display-cart-item-count/ the code is wrong. There is one more parenthesis and $cart_count should be $cart_item_count. The corrected code tested:// Return the total amount of items in the shopping cart function get_myeshop_cart_itemcount(){ global $blog_id; $total_items_in_cart = 0; if(isset($_SESSION['eshopcart'.$blog_id])) { $item_array = $_SESSION['eshopcart'.$blog_id]; foreach($item_array as $item) { $total_items_in_cart = $total_items_in_cart + $item['qty']; } } return $total_items_in_cart; } // Display number of items in shopping cart function display_my_cart_items() { $cart_item_count = get_myeshop_cart_itemcount(); if ( $cart_item_count > 1 ) printf('%d %s', $cart_item_count, __('items', 'theme')); else echo __('Empty','theme'); }
Forum: Plugins
In reply to: [eShop] [Plugin: eShop] NewbieFrom where is coming 1 at the end of $_SESSION[‘eshopcart’]?
I want to display a count of items on top of the page, but I also want to keep the ability to add to widget chart so I can’t set “Add to cart, without going to cart page.” to “No”.Forum: Plugins
In reply to: [eShop] [Plugin: eShop] NewbieThanks,
Can sku be made to auto generate itself?Forum: Plugins
In reply to: [eShop] [Plugin: eShop] NewbieYes but after I add a product to chart how do I know after refreshing the page what products are in the basket so that I can add a style? Is there any css class added to a product if is in the basket?
Forum: Plugins
In reply to: [eShop] [Plugin: eShop] NewbieThanks.
Is there a way that products added to chart to have a different style after refreshing the page?Forum: Plugins
In reply to: [eShop] [Plugin: eShop] NewbieThanks.
What is a good practice to change html markup?
I use panels but want to put title above and does not have any class applied to it(is an a tag), to hook onto it.Forum: Plugins
In reply to: [eShop] [Plugin: eShop] NewbieSo the trick is to play with the thumbnail percentage until you get to desired dimensions.
Forum: Plugins
In reply to: [eShop] [Plugin: eShop] NewbieWhit function bellow I add a specified image size:
add_image_size( ‘product-thumb’, 206, 206, true )
How can I get my specified image size instead of futured image thumbnail?Forum: Plugins
In reply to: [eShop] [Plugin: eShop] NewbieThanks, I just discovered that after asking. At least, someone will read it and find it helpful.