acts-1224C
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 |
---|---|---|---|---|---|
membership site
Started by: acts-1224C in: Toolset Professional Support |
2 | 3 | 5 years, 2 months ago | ||
Forms plugin
Started by: acts-1224C in: Toolset Professional Support |
2 | 2 | 5 years, 3 months ago | ||
working with gutenberg blocks
Started by: acts-1224C in: Toolset Professional Support |
2 | 5 | 5 years, 3 months ago | ||
Content Template or Layout?
Started by: acts-1224C
in: Toolset Professional Support
Problem: Solution: 2. Toolset Layouts doesn't allow you to create Content Templates if you don't use Views. If you do, you can display Content Templates and even create them thru the Layout GUI. But in fact, Content Templates rely on Views. Content Templates can apply to single posts or entire post types or just on those posts on the archive of that type. 3. Toolset Layouts adds 2 Drag and Drop builders to WordPress, one for general (Template) Layouts that can be applied to single posts, or a post type, or an archive and more, and the (Content) Layouts that are applied and generated for every single post when editing the post. 4. All 3 (Content Templates, Template Layouts and Content Layouts) will apply only to the_content() part of your posts (the post body). They will not allow you to design anything around that post body. 5. Toolset Layouts can, with the correct programmatic integration, be used to design the templates including sidebars and other elements, but other PageBuilders are very advanced on this meanwhile and we rarely recommend this approach anymore, unless needed or requested. 6. The main advantage of Layouts is it has an automated Bootstrap Builder, you drag around elements and it generates the HTML and outputs it - while in Content Templates you need to write the most HTML on your own. 7. For an existing site built with Content Templates, I wouldn't recommend starting using Toolset Layouts. Better would be editing the Content Templates with the new Gutenberg Builder of WordPress, also using Toolset Blocks. |
2 | 5 | 5 years, 5 months ago | ||
Repeatable group forms
Started by: acts-1224C in: Toolset Professional Support |
2 | 6 | 5 years, 5 months ago | ||
what would be the procedure to change status for a subscriber
Started by: acts-1224C
in: Toolset Professional Support
Problem: I have a membership site that need to approve the request for membership, then after approved I needed to automatically trigger an email with new credentials with login in ID and a system generated password (that would be available for changing after approval) . Solution: You can try with a custom user radio field "Approved", for example: Relevant Documentation: https://toolset.com/documentation/user-guides/automated-email-notifications-with-cred/ |
2 | 3 | 5 years, 6 months ago | ||
is it possible to use cred to change the post status on the front end ?
Started by: acts-1224C
in: Toolset Professional Support
Problem: I have a membership site where their post show as pending status. After the content is reviewed, then the post is set to published. Is that possible to happen on the front end so I don't have to hive access to the back end of the website? Solution: It is possible, you can create a Toolset form for editing post, in section "Settings", option "Set this post status" choose "Published", then after user submit this post form, it will be able to change the post status to "Published". Relevant Documentation: |
2 | 5 | 5 years, 6 months ago | ||
I uploaded file and I needed it display the image of it instead of the location
Started by: acts-1224C in: Toolset Professional Support |
2 | 5 | 5 years, 6 months ago | ||
Set image dimension in the custom field to save space as it is uploaded to media
Started by: acts-1224C
in: Toolset Professional Support
Problem: Solution: So, to validate the image while uploading, you need to use the hook: wp_handle_upload_prefilter For example: function func_validate_image_size( $file ) { $size = $file['size']; $size = $size / 1024; $type = $file['type']; $is_image = strpos( $type, 'image' ) !== false; $limit = 250; $limit_output = '250kb'; if ( $is_image && $size > $limit ) { $file['error'] = 'Image files must be smaller than ' . $limit_output; }//end if return $file; }//end nelio_max_image_size() add_filter( 'wp_handle_upload_prefilter', 'func_validate_image_size' ); You can find the proposed solution in this case with the following reply: Relevant Documentation: |
2 | 3 | 5 years, 6 months ago | ||
show one particular promotional view in different sites
Started by: acts-1224C
in: Toolset Professional Support
Problem: I need to create an advertise view to displays in the many websites for the companies that maintain relationship with ours. Solution: There isn't such kind of feature within Views, As a workaround, I suggest you try these: Relevant Documentation: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe |
2 | 3 | 5 years, 6 months ago | ||
double/mirroring archives output
Started by: acts-1224C in: Toolset Professional Support |
2 | 3 | 5 years, 6 months ago | ||
plugins intergration
Started by: acts-1224C
in: Toolset Professional Support
Problem: I have both views and layout plugins installed, but the layout plugin takes precedent every time I am in the dashboard and I want to make a template or an archive. I wanted to be able to select which plugin to use. for sometimes it is more convenient to use views so I can integrate with my page builder, but sometimes I want to use the functionality of the layout plugin. Solution: You can also try to skip the Toolset Dashboard page, create the Views WordPress archive directly by following our document: Relevant Documentation: |
2 | 3 | 5 years, 6 months ago | ||
Formatting Number fields
Started by: acts-1224C in: Toolset Professional Support |
2 | 3 | 5 years, 8 months ago | ||
double archives output
Started by: acts-1224C in: Toolset Professional Support |
2 | 10 | 5 years, 9 months ago | ||
Now I need help in another situation.
Started by: acts-1224C
in: Toolset Professional Support
Problem: I have 27 districts, which each district has about 4 to 5 churches. I have district leaders leading each district individually and they dont share information among them. and churches with one or two ministers in each church. The district leader will have oversite (and access to view only the churches in his district and only the churches assigned to that district, and not access the other districts info. how do I accomplish it. Solution: it needs just three post types, see details here: https://toolset.com/forums/topic/now-i-need-help-in-another-situation/#post-1188776 Relevant Documentation: |
2 | 3 | 5 years, 9 months ago |