AlimB3245
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 |
---|---|---|---|---|---|
Create a 'Launch Date' custom field but should be filterable but pretty
Started by: AlimB3245 in: Toolset Professional Support |
2 | 3 | 4 years, 8 months ago | ||
Can't change the block size and transition of repeatable fields module
1
2
3
Started by: AlimB3245 in: Toolset Professional Support |
4 | 32 | 4 years, 8 months ago | ||
arrange order for taxonomies display for editing
Started by: AlimB3245 in: Toolset Professional Support |
2 | 3 | 4 years, 8 months ago | ||
Finding the slug of a VIEW created in Block Editor to use in a shortcode
Started by: AlimB3245
in: Toolset Professional Support
Problem: I would like to get the slug of a View which was crated in the Blocks editor, but I cannot find it. Solution: If the View's name is a simple Latin character text string, you can usually guess it. It will usually be all lowercase letters, with spaces replaced by hyphens (-). You can find the slug in the posts table of the database under the column "post_name". Otherwise, edit the post or page where the View was created. Open the browser JavaScript console and run the following code: WPViews.dataCache.views You can dig around through the various items to find the slug that corresponds to the name of the View you created in wp-admin. |
2 | 5 | 4 years, 8 months ago | ||
Shortcode seems to work inside tag but not inside tag
Started by: AlimB3245
in: Toolset Professional Support
Problem: "Advanced Ads" plugin does not support using types shortcode within HTML script tag. Solution: You can try with PHP codes, for example: https://toolset.com/forums/topic/shortcode-seems-to-work-inside-tag-but-not-inside-tag/#post-1650047 Relevant Documentation: https://developer.wordpress.org/reference/functions/do_shortcode/ |
2 | 7 | 4 years, 8 months ago | ||
Editor Roles has permission issues
Started by: AlimB3245
in: Toolset Professional Support
Problem: With Toolset Access + WPML plugins, when logged in as editor user, I can not edit regular posts. Solution: You can try these: Dashboard-> Toolset-> Access control-> Post Types Relevant Documentation: |
2 | 5 | 4 years, 8 months ago | ||
Shortcode for post-url of child item
Started by: AlimB3245
in: Toolset Professional Support
Problem: With one-to-one relationship, display link of related post. Solution: You can try view's shortcode [wpv-post-url], for example: <a href="[wpv-post-url item='@issue-editorspeak.child']">Read More</a> Relevant Documentation: https://wp-types.com/documentation/user-guides/views-shortcodes/#wpv-post-url |
2 | 9 | 4 years, 8 months ago | ||
Where do Custom User Fields Go?
Started by: AlimB3245
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 5 | 4 years, 8 months ago | ||
Create homepage from Content Template (Single) and a static post page (archive)
Started by: AlimB3245
in: Toolset Professional Support
Problem: Design home page with content template. Solution: You can create a new page, and design it to want you want using content template, then use it as home page. Relevant Documentation: |
2 | 5 | 4 years, 8 months ago | ||
Wrapping a dynamic FEATURED IMAGE with dynamic POST CONTENT
Started by: AlimB3245 in: Toolset Professional Support |
2 | 3 | 4 years, 8 months ago | ||
Cannot save custom code snippet
Started by: AlimB3245
in: Toolset Professional Support
Problem: I cannot edit a custom code snippet in Toolset > Settings > Custom Code. A message is shown: Solution: Check to see if either DISALLOW_FILE_EDIT or DISALLOW_FILE_MODS is set in your wp-config.php file. If so, define those as false. Also check your file permissions on the server to be sure WordPress can write to the /wp-content/toolset-customizations/ directory. If you can't do these, edit the file manually and use FTP to save it on the server. |
2 | 4 | 4 years, 8 months ago | ||
Field Groups and Custom Fields not accessible to Editor Role
Started by: AlimB3245 in: Toolset Professional Support |
2 | 12 | 4 years, 8 months ago | ||
types field inside a script for advanced ads
Started by: AlimB3245 in: Toolset Professional Support |
2 | 3 | 4 years, 8 months ago | ||
Can’t Add New User WIth New Custom Role as Author
Started by: AlimB3245
in: Toolset Professional Support
Problem: I have created a custom role with Access. I would like to choose a User in that custom role, when selecting the author of a post. It turns out that none of the Users in this custom role appear in the author dropdown options. What should I do to add and enable those author select options? Solution: Please add a custom code snippet to your site in order to add these Users to the select author dropdown field: function wpdocs_add_members_to_dropdown( $query_args, $r ) { $query_args['role'] = array('member'); // Unset the 'who' as this defaults to the 'author' role unset( $query_args['who'] ); return $query_args; } add_filter( 'wp_dropdown_users_args', 'wpdocs_add_members_to_dropdown', 10, 2 ); Replace member with the slug of your custom role. Relevant Documentation: |
2 | 7 | 4 years, 8 months ago | ||
User Permission to View and Edit Custom Posts
Started by: AlimB3245 in: Toolset Professional Support |
2 | 7 | 4 years, 8 months ago |