coetzeeG
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 |
---|---|---|---|---|---|
Display classified ad post title on enquiry form
Started by: coetzeeG
in: Toolset Professional Support
Problem: Solution: you can find proposed solution with the following reply: Relevant Documentation: |
2 | 8 | 6 years, 8 months ago | ||
Notify user when ad expires
Started by: coetzeeG
in: Toolset Professional Support
Problem: Solution: Relevant Documentation: |
2 | 7 | 6 years, 8 months ago | ||
information disappears when adding query filters to author archive
Started by: coetzeeG
in: Toolset Professional Support
Problem: Solution: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 10 | 6 years, 10 months ago | ||
Ad custom search to author page
Started by: coetzeeG
in: Toolset Professional Support
Problem: You can find proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 9 | 6 years, 10 months ago | ||
Auto “expire” all of an authors posts on specific date
Started by: coetzeeG in: Toolset Professional Support |
2 | 2 | 6 years, 10 months ago | ||
Customize rss feed
Started by: coetzeeG
in: Toolset Professional Support
Problem: I would like to customize my site's RSS feeds. Solution: Types does not offer a way to directly modify RSS feed information through the wp-admin area, but another ticket here on the forum includes some information about customizing RSS feeds you might find helpful. You can access raw custom field values in PHP using the following syntax: get_post_meta( $post_id, 'wpcf-fieldslug', true); Or you can access the formatted field values using this syntax: types_render_field('fieldslug', array( "id"=>$post_id, "arg1"=>"some value") ); Relevant Documentation: https://toolset.com/forums/topic/how-to-get-an-rss-feed-from-custom-post-type-with-all-associated-fields-and-taxo/ |
2 | 7 | 6 years, 10 months ago | ||
Search not performing as expected
Started by: coetzeeG
in: Toolset Professional Support
Problem: Solution: You can find the proposed solution, in this case, with the following reply: Relevant Documentation: |
2 | 12 | 6 years, 10 months ago | ||
No user information shown on a Layout user Archive
Started by: coetzeeG
in: Toolset Professional Support
Problem: They do not display on the front end of the author archive. Solution: A user needs to be an author to appear on an author archive. |
2 | 9 | 6 years, 10 months ago | ||
How to change Classifieds reference site email notifications
Started by: coetzeeG
in: Toolset Professional Support
Problem: I would like to know how to make some changes to the email notifications sent by CRED in the Classifieds reference site. I would like to change the "from" address to match the message sender, and I would like to include the corresponding Ad title in the message. Solution: [wpv-search-term param='listing-id'] Then you can figure out the Listing Title from that ID like this: [wpv-post-title id="[wpv-search-term param='listing-id']"] Insert that as the value of your generic field: [cred_generic_field field='listing_title' type='hidden' class='' urlparam=''] { "required":0, "validate_format":0, "persist":1, "default":"[wpv-post-title id='[wpv-search-term param='listing-id']']" } [/cred_generic_field] Then you can use that title in your CRED notification with this shortcode: [wpv-post-field name="listing_title"] and the from address is not from the sender. Here's an example: //Customise CRED notifications add_filter('cred_mail_header', 'customise_cred_message_from', 10, 5); function customise_cred_message_from( $headers, $formid, $postid, $notification_name, $notification_number ) { if ($formid==12345 && $notification_number==67890) { $current_user = wp_get_current_user(); $myheaders = array( 'From: ' . $current_user->user_email ); return array_merge($headers, $myheaders); } return $headers; } Modify 12345 to match your CRED form ID, and change 67890 to match the notification index (zero if no other notifications exist for this form) Relevant Documentation: |
2 | 5 | 6 years, 10 months ago | ||
Help with My Account page
Started by: coetzeeG
in: Toolset Professional Support
Problem: In my case I require the use of author pages and a customer does seem to allow this. Now when you change the user role to customer and try to visit the author page it leads no where, just back to the home page. Solution: It is not related with Toolset plugins, you can simply deactivate all other plugins(including Toolset plugins), except Woocommerce plugin, you should be able to see the same problem: It should be a limitation of Woocommerce plugin Relevant Documentation: |
2 | 12 | 6 years, 10 months ago | ||
Help with Rewrite options
Started by: coetzeeG in: Toolset Professional Support |
2 | 3 | 6 years, 11 months ago | ||
Help with adding custom user fields to author archive
Started by: coetzeeG
in: Toolset Professional Support
Problem: Solution: Creating some standard WordPress posts (even if not used anywhere) fixed the issue. |
2 | 12 | 6 years, 11 months ago | ||
Don’t display a field if it is empty
Started by: coetzeeG
in: Toolset Professional Support
Problem: Solution: So you would wrap the whole div contents in wpv-conditional shortcodes if you don't want the label to appear either. Relevant Documentation: |
2 | 3 | 6 years, 11 months ago | ||
How to use taxonomy term placeholders in CPT url permalinks?
Started by: coetzeeG
in: Toolset Professional Support
Problem: Solution: One such plugin is https://wordpress.org/plugins/custom-post-type-permalinks/ |
2 | 6 | 6 years, 11 months ago | ||
Adding content to custom author archive
Started by: coetzeeG
in: Toolset Professional Support
Problem: The issue here is that the user wanted to display the user meta fields on his custom author archive. Solution: |
2 | 4 | 7 years ago |