Robert Campbell
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 |
---|---|---|---|---|---|
Need help with select type user field
Started by: Robert Campbell
in: Toolset Professional Support
Problem: Solution: Unfortunately this isn't possible natively as you will need to write some custom code to determine which option the user has set on their profile. For help with such custom coding you can contact a contractor from our list in the link below. |
2 | 7 | 6 years, 9 months ago | ||
How does the lost password ShortCode of Views work?
Started by: Robert Campbell
in: Toolset Professional Support
Problem: Solution: wpv-forgot-password-form in it's full usage amplitude works like this: 1. This displays a Form that let's you enter the Username or Email and click a button "get new password". [wpv-forgot-password-form redirect_url="url-to-your-site.com/success/" redirect_url_fail="url-to-your-site.com/failure/" reset_password_url="url-to-your-site.com/reset/"] 2. When all the above attributes are applied, the process works as this: url-to-your-site.com/success/?checkemail=confirm - redirect_url_fail url-to-your-site.com/failure/?wpv_error=invalidcombo - reset_password_url url-to-your-site.com/reset/?action=rp&key=amLXCkuwZcajvdasfPPDfaPp&login=anything (Of course, username and key are different in every case) This link is clickable in the email. Relevant Documentation: |
2 | 3 | 6 years, 9 months ago | ||
Need help positioning glyphicon icons in login form
Started by: Robert Campbell in: Toolset Professional Support |
2 | 5 | 6 years, 11 months ago | ||
Need help to style the [wpv-login-form] shortcode
Started by: Robert Campbell in: Toolset Professional Support |
1 | 2 | 6 years, 11 months ago | ||
@media queries do not work with archive cell in Layouts
Started by: Robert Campbell
in: Toolset Professional Support
Problem: Media queries in CSS do not appear to work in certain Layouts. I would like to override the maximum container width on certain pages at certain screen sizes. Solution: There is currently a bug causing the Layouts CSS file to be loaded in different sequence on some pages. This can result in unexpected CSS changes if you target the same classes as Bootstrap. As a temporary solution, you may use more specific CSS selectors to override Bootstrap's selectors. @media screen and (min-width: 1200px) { .archive .container, .post-template .container, .page-template .container { width: 1230px; } } @media screen and (min-width: 1920px) { .archive .container, .post-template .container, .page-template .container { width: 1600px; } } |
2 | 4 | 7 years, 1 month ago | ||
Need help with the [wpv-pager-nav-links] shortcode
Started by: Robert Campbell in: Toolset Professional Support |
2 | 3 | 7 years, 1 month ago | ||
First slide in slideshow loading too slowly
Started by: Robert Campbell
in: Toolset Professional Support
Problem: An image which should be displayed in the first slide of a slider View is not appearing. When the slider loops over and plays a second time, the image appears. I recently migrated the site from http to https. Solution: Try to resolve any mixed content warnings or errors you find after the site migration. All references to http should be changed to https, including the settings in Settings > General and any file paths in the database. Always make a backup before attempting any manual database changes. If you do a simple find and replace, you will likely break serialized data structures and bring down your site. It's best to use a migration tool or plugin to perform this task. |
2 | 7 | 7 years, 4 months ago | ||
Image crop not working in all my views
Started by: Robert Campbell in: Toolset Professional Support |
2 | 4 | 7 years, 4 months ago | ||
Problem with multi-level Layouts hierarchy
Started by: Robert Campbell
in: Toolset Professional Support
Problem: All of my Layouts have the same slug, resulting in problems with Layout hierarchy. Solution: Disable the Widgets on Pages plugin |
2 | 8 | 7 years, 4 months ago | ||
Problem with page shortcodes
Started by: Robert Campbell
in: Toolset Professional Support
Problem: The wpv-pager-current-page and wpv-pager-total-pages shortcodes are displaying no values when placed on an archive that only includes one page of results. <div class="archive-page-more"> Page [wpv-pager-current-page] of [wpv-pager-total-pages] [wpv-pager-archive-prev-page] [wpml-string context="wpv-views"]<< Previous[/wpml-string] [/wpv-pager-archive-prev-page] [wpv-pager-archive-next-page] [wpml-string context="wpv-views"]Next >>[/wpml-string] [/wpv-pager-archive-next-page] </div> Solution: Or, you may add some conditional statements that will display the number 1 when only 1 page is found: Page [wpv-conditional if="( '[wpv-pager-archive-current-page]' ne '' )" evaluate="false"]1[/wpv-conditional][wpv-pager-archive-current-page] of [wpv-conditional if="( '[wpv-pager-archive-total-pages]' ne '' )" evaluate="false"]1[/wpv-conditional][wpv-pager-archive-total-pages] Relevant Documentation: https://toolset.com/documentation/user-guides/views-shortcodes/#wpv-pagination |
2 | 4 | 7 years, 4 months ago | ||
Problem with collapsed menu
Started by: Robert Campbell
in: Toolset Professional Support
Problem: The top part of my collapsed menu button is not clickable. Solution: Use CSS z-index to ensure your menu is displayed in front of other portions of your site. #my-first-menu .ddl-navbar { border: none; margin-bottom: 0px; min-height: 0px; z-index: 2; } |
2 | 3 | 7 years, 4 months ago |