|
I've got an layout (tryed also with content template) but no data shown
Started by: BrunoJ506
in: Toolset Professional Support
|
|
2 |
5 |
7 years, 2 months ago
BrunoJ506
|
|
Correcting one layouts problem has created another
Started by: RogerD3433
in: Toolset Professional Support
|
|
2 |
5 |
7 years, 2 months ago
RogerD3433
|
|
Just purchased toolset. "Toolset Layout" makes webiste go blank when activated.
Started by: MoeJ5419
in: Toolset Professional Support
|
|
2 |
13 |
7 years, 2 months ago
MoeJ5419
|
|
Layout View for attachment dont`t show image
Started by: Ronny Wunderlich
in: Toolset Professional Support
Quick solution available
Problem: I would like to create a Layout for Media attachment pages, but I can't get my image to show up.
Solution: Add the following attachment link shortcode:
add_shortcode('wpv-attachment-link', 'attachment_link_shortcode');
function attachment_link_shortcode ($atts) {
global $post;
return wp_get_attachment_image_src($post->ID, $atts['size'])[0];
}
Use the shortcode like so:
[wpv-attachment-image size="large"]
Now each image is displayed as a link to the attachment.
|
|
2 |
9 |
7 years, 2 months ago
Ronny Wunderlich
|
|
"Please check the layout you are trying to render actually exists." for home pag
Started by: nedG
in: Toolset Professional Support
|
|
2 |
2 |
7 years, 2 months ago
Mohammed
|
|
Woocommerc view plugin is not displaying my products, thus expanding my images.
Started by: damilolaS
in: Toolset Professional Support
|
|
2 |
2 |
7 years, 2 months ago
Luo Yang
|
|
Container width makes post content overflow
Started by: julienL-5
in: Toolset Professional Support
|
|
2 |
5 |
7 years, 2 months ago
julienL-5
|
|
Display Woocommerce product select by taxonomy custom on a WordPress page
Started by: fabioB
in: Toolset Professional Support
Quick solution available
|
|
2 |
21 |
7 years, 2 months ago
fabioB
|
|
Toolset not letting me use default WooCommerce template for categories
Started by: George Valdez
in: Toolset Professional Support
Quick solution available
Problem:
use the default WooCommerce template to display workshop categories. Set WooCommerce Views to Woocommerce default, I still get the message "You need to select a layout for this page. The layout selection is available in the page editor." How do I get Views to behave when using default template to show category products list?
Solution:
Solved in Layouts v2.1
|
|
2 |
10 |
7 years, 2 months ago
George Valdez
|
|
search parameters not updating
Started by: Franco Calcagni
in: Toolset Professional Support
|
|
2 |
6 |
7 years, 2 months ago
Franco Calcagni
|
|
creating search section for lesson according to criterias
Started by: ofirl
in: Toolset Professional Support
|
|
2 |
2 |
7 years, 2 months ago
Luo Yang
|
|
displaying lesson type icon on front end according to choice on backend
Started by: ofirl
in: Toolset Professional Support
|
|
2 |
2 |
7 years, 2 months ago
Minesh
|
|
Need a header placed below the fold to stick to the page top when scrolled past
Started by: jonB-5
in: Toolset Professional Support
Quick solution available
Problem: I'm using a sticky header plugin to help "stick" the title of a post at the top of the screen once I scroll past it, but I can't get the plugin to work with Toolset.
Solution: In the Toolset environment, jQuery is represented by the variable 'jQuery' instead of '$', so you must replace any instance of the '$' variable with 'jQuery' in your initialization code. Then you must calculate the correct initialization height based on the placement of the title and the menu height. See the attached screenshot below.
jQuery(document).ready(function() {
jQuery(window).bind('scroll', function() {
// your code here using jQuery instead of $
// ...
});
});
|
|
2 |
5 |
7 years, 2 months ago
jonB-5
|
|
Problm with thw original page layout made with Visucl acomposer and the theme 7
Started by: montseF
in: Toolset Professional Support
|
|
2 |
9 |
7 years, 2 months ago
montseF
|
|
wpv-woo-buy-or-select not working as expected
Started by: SveinS2414
in: Toolset Professional Support
Quick solution available
Problem: Instead of showing the variation select field, I would like to show a "Buy" button for each product variation.
Solution: You can use the wpv-woo-buy-or-select shortcode to create multiple Buy buttons. Each button will link to the product detail page, where the user must select a variation to add to their cart.
[wpv-woo-buy-or-select link_to_product_text='Buy Variation 1' show_variation_options='no']
[wpv-woo-buy-or-select link_to_product_text='Buy Variation 2' show_variation_options='no']
[wpv-woo-buy-or-select link_to_product_text='Buy Variation 3' show_variation_options='no']
Or, you can format links that will add a variation directly to the user's cart as described in the link below.
Relevant Documentation:
https://toolset.com/documentation/user-guides/views-shortcodes/#wpv-woo-buy-or-select
http://www.remicorson.com/add-woocommerce-variable-product-with-variations-to-cart/
|
|
2 |
9 |
7 years, 2 months ago
SveinS2414
|