Jigoshop Support-Vasili
Forum Replies Created
-
Forum: Plugins
In reply to: [Jigoshop] Translating [order_items_table]Hi Andy,
In which language are you trying to translate? To do that manually go to jigoshop/templates/emails and open the file items.php and change the default text in your appropriate language.
Forum: Plugins
In reply to: [Jigoshop] Images are not changing with color attributesThe issue has been resolved and for now we will close this topic
Forum: Plugins
In reply to: [Jigoshop] How can i change the layout of the product page?We are glad to help :), if you like our plugin maybe you will find a time to leave a review for us, we do appreciate opinions of our clients, it help us to make our product more better:
https://www.ads-software.com/support/view/plugin-reviews/jigoshop
Forum: Plugins
In reply to: [Jigoshop] How to add order number to admin email subject?If you like Jigoshop and/or our support/management team, perhaps I could ask you to leave a review:
https://www.ads-software.com/support/view/plugin-reviews/jigoshopForum: Plugins
In reply to: [Jigoshop] How to add order number to admin email subject?Hi seannevo,
Thanks for letting us know, do not hesitate to contact us if you will experience any issues, we will gladly assist you.
Forum: Plugins
In reply to: [Jigoshop] Images are not changing with color attributesHi Dade88, paulogomesorg
Could you contact us though our website jigoshop.com? From the contact form,
You need to include a subject and link to this topic into email message. We will try to help you to fix this issue.Forum: Plugins
In reply to: [Jigoshop] How to add order number to admin email subject?Hi seannevo,
Order number is included in order email notification, what version of Jigoshop are you using? Try to regenerate order emails:
Jigoshop -> Settings -> General and click the button “Generate Defaults” under “Email Details” sectionForum: Plugins
In reply to: [Jigoshop] Pagination does not workCould you send us a system info at jigoshop.com? From the contact form,
You can get a system info by following steps:
Go to Jigoshop -> System Info and click the button “Get system report”
copy and paste the content, also add in to email subject link to this topicForum: Plugins
In reply to: [Jigoshop] Pagination does not workHi Breinbrouwsels,
Have you made before any custom changes?
Forum: Plugins
In reply to: [Jigoshop] How can i change the layout of the product page?Hi Th10thpower,
Usually it can be done by editing the source files (your-theme/style.css) Or maybe in your theme general settings, you need to look at it if there is such an option to change a layout of the page. You can also do it by creating a folder in your theme directory name it ‘jigoshop’ and create inside that folder a new folder ‘templates’ add the following file(s) (copy and paste them) from ‘jigoshop/templates’ : ‘loop-shop.php’ if you would like to change only the shop page layout. It will overrides Jigoshop standard shop page layout and you can style it in your theme/style.css to change the layout, to do that you need to be of course familiar with minimum knowledge of HTML and CSS as well as PHP coding also.
Forum: Plugins
In reply to: [Jigoshop] Product CategoriesHi Kasfashu,
Try to set parent category for your subcategories, from admin panel in Jigoshop category page.
Forum: Plugins
In reply to: [Jigoshop] Product CategoriesHi kashifau,
If you want to remove the products from the particular category and add it to your own posts try to do the following:
Create new post from WordPress admin panel and add it to particular category you would like to set, then go to Products page click ‘edit’ product button and remove categories you have set earlier for the new created post.
Forum: Plugins
In reply to: [Jigoshop] html entity in order email subjectOK Ian, thanks for letting us know, actualy here in the post my answer was converted as well, follow the link here to find the appropriate html entities and for future you need to use the title with html entity instead of special chars like ampersand, to be converted correctly
In your case it will look like this : C’html entity’C Training
Forum: Plugins
In reply to: [Jigoshop] html entity in order email subjectHi Ian,
Try to add something like this:
C&C TrainingForum: Plugins
In reply to: [Jigoshop] Jigoshop shortcode for tags?Hi Junglecat18,
Currently there is not such an option in Jigoshop, try the code snippet below, add it in your theme/functions.php file and after add the shortcode in your prefered page or post : [product_by_tag tags=”your-tag1, your-tag2, etc”]
If this will not help, remove the whole code snippet from your theme/functions.php file to avoid any errors
function productByTags($atts) {
global $tags;extract(shortcode_atts(array(
“tags” => ”
), $atts));ob_start();
$args = array(
‘post_type’ => ‘product’,
‘posts_per_page’ => 5,
‘post_status’ => ‘publish’,
‘product_tag’ => $tags
);$loop = new WP_Query( $args );
// Get products number
$product_count = $loop->post_count;// If results
if( $product_count > 0 ) :echo ‘<ul class=”products” style=”width:100%”>’;
// Start the loop
while ( $loop->have_posts() ) : $loop->the_post();global $post;
echo ‘<li class=”product”><p>’ . $thePostID = $post->post_title. ‘</p>’;
$_product = new jigoshop_product(get_the_ID());
if (has_post_thumbnail( $loop->post->ID )){
echo ‘ID) . ‘”>’ . $_product->get_image(‘shop_large’) . ‘‘;
}endwhile;
echo ”;
else :
_e(‘No product matching your criteria.’);
endif;
return ob_get_clean();
}
add_shortcode(‘product_by_tag’, ‘productByTags’);