massimoS527
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 |
---|---|---|---|---|---|
Glyphicons: add them to the layout
Started by: massimoS527
in: Toolset Professional Support
Problem: The issue here is that the user wanted to know what to do to use a custom icon that he uploads to his site. Solution: To use your custom icon you will need to do this. p::before { content: url('https://marketplace.canva.com/MAB3FepjWok/1/thumbnail/canva-beer-beverage-MAB3FepjWok.png'); } where you will place the link of your icon. |
2 | 9 | 6 years, 7 months ago | ||
conflict Layout -> Elementor
Started by: massimoS527 in: Toolset Professional Support |
2 | 4 | 6 years, 7 months ago | ||
which class to use to edit view filters
Started by: massimoS527 in: Toolset Professional Support |
3 | 11 | 6 years, 7 months ago | ||
Editor CSS di View: how does it work ?
Started by: massimoS527 in: Toolset Professional Support |
2 | 2 | 6 years, 8 months ago | ||
view: when I update the page the size of the buttons change
1
2
Started by: massimoS527 in: Toolset Professional Support |
2 | 18 | 6 years, 8 months ago | ||
Layout cell background image from custom field
Started by: massimoS527
in: Toolset Professional Support
Problem: I would like to use an image specified in a custom field as the background of a layout cell. Solution: Add the background image as an inline style to the container: <div style="background-image:url('[types field='layout-ricordo' size='full' url='true'][/types]')"> |
2 | 10 | 6 years, 8 months ago | ||
Split: How to create Content Templates with Elementor
Started by: massimoS527
in: Toolset Professional Support
Problem: I would like to create Content Templates with the Elementor builder. Solution: We have some information about how Toolset can be integrated in an Elementor page design in this video: |
2 | 3 | 6 years, 8 months ago | ||
Responsive layout
1
2
Started by: massimoS527
in: Toolset Professional Support
Problem: I would like to display the results of my View in a Bootstrap-style grid that has 6 columns on desktop, 3 columns on tablets, and 2 columns on phones. Solution: Use the following Bootstrap grid classes on each result in the loop: <div class="col-xs-6 col-sm-4 col-md-2 col-lg-2"> Relevant Documentation: https://getbootstrap.com/docs/3.3/css/#grid |
2 | 21 | 6 years, 8 months ago | ||
Spinner customization
Started by: massimoS527
in: Toolset Professional Support
Problem: When the AJAX loading spinner is displayed in my custom search View, it causes the submit and reset buttons to move around. I would like to set it up so the spinner does not cause this shift of other elements on the page. Solution: Move the spinner into the last column and wrap it in a floating div, like this: <div class="col-sm-2"> [wpv-filter-submit name="cerca" output="bootstrap"] [wpv-filter-reset reset_label="reset" output="bootstrap"] <div style="float:right; padding-top:10px;"> [wpv-filter-spinner container="span" position="after" spinner="@https://yoursite.com/wp-content/plugins/wp-views/embedded/res/img/ajax-loader3.gif"][/wpv-filter-spinner] </div> </div> |
2 | 9 | 6 years, 8 months ago | ||
Css to edit button: "Search" and "Clear"
Started by: massimoS527 in: Toolset Professional Support |
2 | 5 | 6 years, 8 months ago | ||
View: Limit and offset invisible
Started by: massimoS527
in: Toolset Professional Support
Problem: I cannot find the options to modify "Limit" and "Offset" configurations in my View editor. Solution: Scroll up to the top right corner of wp-admin screen and click the tab "Screen Options". You will be able to enable or disable interface elements here. Relevant Documentation: |
2 | 3 | 6 years, 8 months ago | ||
Patch for CRED and Relevannsi
Started by: massimoS527
in: Toolset Professional Support
Problem: I want to apply the patch mentioned in the erratum post about CRED Auto Draft posts when Relevannsi is active and featured images are used. When I update to the next version of CRED, what should I do about the patched file? Solution: The next update of CRED will overwrite the patched file, and the permanent fix will be included in the update. No additional code or manual intervention is required. |
2 | 3 | 6 years, 8 months ago | ||
website security sucuri and Itheme
Started by: massimoS527
in: Toolset Professional Support
Problem: The issue here was that the user wanted to know if the website security sucuri and Itheme plugins were compatible with toolset. Solution: If there are any it should be js conflict but we try to ensure our plugins are compatible as best as possible so if you are experiencing any issues at all you are welcomed to open a support ticket and our team can have a look. |
2 | 3 | 6 years, 8 months ago | ||
CRED edit post form taxonomy field default option
Started by: massimoS527
in: Toolset Professional Support
Problem: I have two CRED forms, one to create posts and another to edit posts. In each form I have 3 taxonomy fields for custom taxonomies. In the past, I added some custom code that inserts a default option in each field that says "-choose-". I also added custom code that returns an error using cred_form_validate if the default option is selected. It doesn't always work as expected. Sometimes the wrong selected option appears on the front-end. Solution: /* TASSONOMIE OBBLIGATORIE IN AGGIUNGI CREATURE */ add_filter('cred_form_validate','func_validate_taxonomy_select',10,2); function func_validate_taxonomy_select($error_fields, $form_data) { //field data are field values and errors list($fields,$errors)=$error_fields; //validate if specific form if ($form_data['id']==348 or $form_data['id']==349) { //check my_field value if ($fields['creatura-sesso']['value'][0] == '0') { //set error message for my_field $errors['creatura-sesso']='fai una scelta'; } //check my_field value if ($fields['creatura-specie']['value'][0] == '0') { //set error message for my_field $errors['creatura-specie']='fai una scelta'; } //check my_field value if ($fields['creatura-vita-assieme']['value'][0] == '0') { //set error message for my_field $errors['creatura-vita-assieme']='fai una scelta'; } } //return result return array($fields,$errors); } CRED New Post form JS: var $selected = jQuery("select[name='creatura-sesso[]']").find("option[selected='selected']"); var si = $selected.length ? $selected.index() : -1; jQuery("select[name='creatura-sesso[]']").prepend('<option value="0">-choose-</option>'); jQuery("select[name='creatura-sesso[]']")[0].selectedIndex = (si==-1 ? 0 : si + 1); $selected = jQuery("select[name='creatura-specie[]']").find("option[selected='selected']"); si = $selected.length ? $selected.index() : -1; jQuery("select[name='creatura-specie[]']").prepend('<option value="0">-choose-</option>'); jQuery("select[name='creatura-specie[]']")[0].selectedIndex = (si==-1 ? 0 : si + 1); $selected = jQuery("select[name='creatura-vita-assieme[]']").find("option[selected='selected']"); si = $selected.length ? $selected.index() : -1; jQuery("select[name='creatura-vita-assieme[]']").prepend('<option value="0">-choose-</option>'); jQuery("select[name='creatura-vita-assieme[]']")[0].selectedIndex = (si==-1 ? 0 : si + 1); CRED Edit Post form JS: // tassonomia prima selezione con patch avviso: diversa da aggiungi creatura jQuery(document).ready(function($){ var si = jQuery("select[name='creatura-sesso[]']")[0].selectedIndex; jQuery("select[name='creatura-sesso[]']").prepend('<option value="0">-choose-</option>'); jQuery("select[name='creatura-sesso[]']")[0].selectedIndex = (si==-1 ? 0 : si+1); si = jQuery("select[name='creatura-specie[]']")[0].selectedIndex; jQuery("select[name='creatura-specie[]']").prepend('<option value="0">-choose-</option>'); jQuery("select[name='creatura-specie[]']")[0].selectedIndex = (si==-1 ? 0 : si+1); si = jQuery("select[name='creatura-vita-assieme[]']")[0].selectedIndex; jQuery("select[name='creatura-vita-assieme[]']").prepend('<option value="0">-choose-</option>'); jQuery("select[name='creatura-vita-assieme[]']")[0].selectedIndex = (si==-1 ? 0 : si+1); }); Relevant Documentation: |
2 | 9 | 6 years, 8 months ago | ||
localhost and Toolset license
Started by: massimoS527
in: Toolset Professional Support
Problem: The issue here is that the user is using his API key for his live account but wanted to use it for his Local test site as well. Solution: Unfortunately because of this user's account type he can only generate 1 key per account. The real benefit to the site key is that you can download the plugin and update automatically. However for your localhost you can always download the plugins and update them manually from here. |
2 | 9 | 6 years, 9 months ago |