laszloB
Support threads created in the last 30 days: 0
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
block view translate problem
Started by: laszloB
in: Toolset Professional Support
Problem: In a content template, setup a view block,in the view block, display a button block, Translate the content template with WPML plugins, the button block does not display translated text in front-end. Solution: It is a known issue, and have been escalated to our developers, Currently, please try these: you can setup the view block directly in page content(without content template), then translate the page, it should be able to avoid above issues. Relevant Documentation: |
2 | 7 | 3 years, 8 months ago | ||
Image not displaying on the frontend
Started by: laszloB in: Toolset Professional Support |
2 | 4 | 3 years, 11 months ago | ||
disconnect error
Started by: laszloB in: Toolset Professional Support |
3 | 11 | 4 years, 1 month ago | ||
Filter by post reference field
Started by: laszloB in: Toolset Professional Support |
3 | 5 | 4 years, 2 months ago | ||
UltimateCSV Import does not import Post Relationships since update
Started by: laszloB in: Toolset Professional Support |
2 | 2 | 4 years, 2 months ago | ||
Query filter "THIS_WEEK", "FUTURE_WEEK" alternative
Started by: laszloB in: Toolset Professional Support |
2 | 4 | 4 years, 6 months ago | ||
date field order problem
Started by: laszloB
in: Toolset Professional Support
Problem: I used "WP Ultimate CSV Importer" to upload field datas, setup a post view, order by custom date field, and get unexpected results. Solution: The problem is in your database table "wp_postmeta", there are lots of "Események" posts, which are using two instances in custom date field "Dátum idő", one of the field value is empty, and it conducts the problem, it seems the problem occurs when you import the CSV files. You can try to remove those empty values, for example: https://toolset.com/forums/topic/date-field-order-problem/#post-1685977 Relevant Documentation: |
2 | 6 | 4 years, 6 months ago | ||
Access control – relationship connect
Started by: laszloB in: Toolset Professional Support |
2 | 2 | 5 years, 3 months ago | ||
Gallery shortcode with ids=’view shortcode’
Started by: laszloB
in: Toolset Professional Support
Problem: I am using a 3rd-party gallery tool to create image galleries. The shortcode to insert a gallery will accept an attribute "ids", which can be used to pass a list of post IDs into the gallery. If I try to insert a View shortcode as the value of the ids attribute, it does not work. gallery with view-ids: [gallery ids="[wpv-view name='gal-nezet-proba']"] Solution: Remove all the extra spaces from the Loop Editor so everything between the wpv-loop tags is on one continuous line. Then add this PHP code to functions.php: add_filter( 'wpv_filter_wpv_view_shortcode_output', 'prefix_clean_view_output', 5, 2 ); function prefix_clean_view_output( $out, $id ) { $ids = array( 1234 ); if ( in_array( $id, $ids )) { $start = strpos( $out, '<!-- wpv-loop-start -->' ); if ( $start !== false && strrpos( $out, '<!-- wpv-loop-end -->', $start ) !== false ) { $start = $start + strlen( '<!-- wpv-loop-start -->' ); $out = substr( $out , $start ); $end = strrpos( $out, '<!-- wpv-loop-end -->' ); $out = substr( $out, 0, $end ); } else { $start = strpos( $out, '>' ); if ( $start !== false) { $out = substr( $out, $start + 1 ); $end = strpos( $out, '<' ); $out = trim(substr( $out, 0, $end )); } } } return $out; } Replace 1234 with the numeric ID of this View. Relevant Documentation: |
2 | 5 | 6 years, 5 months ago | ||
Taxonomy order
Started by: laszloB in: Toolset Professional Support |
2 | 2 | 6 years, 5 months ago | ||
wpv-post-id in wpv-conditional
Started by: laszloB
in: Toolset Professional Support
Problem: Solution: For example: [wpv-conditional if="( '[wpv-post-taxonomy type="film-category" format="slug" item="@film-esemeny.parent"]' eq 'abc' )"] condition is true [/wpv-conditional] You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 3 | 6 years, 6 months ago | ||
WPML translated field – shortcode
Started by: laszloB
in: Toolset Professional Support
Problem: The issue here is that the user is using WPML but wanted to display the original language and the translated version of the page title side by side. Solution: Unfortunately we are not able to assist in the Toolset Forums but the WPML forum will be better able to assist with translation issues. |
2 | 2 | 6 years, 6 months ago | ||
calculate shortcode
Started by: laszloB in: Toolset Professional Support |
2 | 5 | 6 years, 6 months ago | ||
Hide default label (show all)
Started by: laszloB
in: Toolset Professional Support
strong>Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 9 | 6 years, 6 months ago | ||
Taxonomy view – filter by another taxonomy
Started by: laszloB in: Toolset Professional Support |
2 | 4 | 6 years, 6 months ago |