clancel
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Related Products Image Size IssueThank you so much for the CSS. I see that the images on the related products section are the same. I would like to move the ‘add to cart’ button under the ‘price’. Would you happen to know the css for that?
Forum: Themes and Templates
In reply to: [Mismo] No Author or Date displayedHi. Sorry about the late response. Here’s a link to page that I would like fixed.
Single Event Post Page issue
I would like to remove the right sidebar and related posts on the following page,
https://www.newyorkpianogroup.org/event/zoom-meetup/
I would also like to change the text hover button color to white or another color. Please check the red and blue buttons at the bottom.
https://www.newyorkpianogroup.org/event/zoom-meetup/I look forward to your help. Thank you.
Solved.
Thank you Priya. Sorry about the website. I forgot to turn off maintenance. You should be able to see it now. I left the expiry date blank before but after entering the expiry date, the event is now showing up on the past events page. However, it’s still on the Events page. How can I remove past events from the Events page?
- This reply was modified 4 years, 7 months ago by clancel.
Hi Priya. I have one expired event which is on the Events page. It should be on the Past Events page but it’s not showing there. Here’s the link.
Forum: Themes and Templates
In reply to: [Mismo] No Author or Date displayedIt’s solved. I deactivated all the plugins and found out that it was one of the plugins that was affecting it. What I would like to do is hide the author and date on my events post. I’m using WP Events Manager to create events and the events are shown on posts. I would like to be able to only show the author and date on post and not event posts. I also would like to hide related posts on my event posts. If you can help me with this, that will be great.
- This reply was modified 4 years, 7 months ago by clancel.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Translating Custom Defined OptionsI already enabled it but it’s not working.
Hi Jory. Template is now working. I used this shortcode,
[pods name=”user” where=”id = {@user.id}” template=”User Template”]
Next thing I wish to do display the special tags in another language. It’s not translating so far.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Translating field selectionRelationship
Simple (custom defined list)Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Translating Custom Defined OptionsHi Jory. I have a template in English that I wish to translate. English template is as follows,
Hi {@first_name}
<br>Card Type: {@payment_record.active_card}
<br>Lesson Type: {@payment_record.lesson_type}The template uses extended User as a reference.
I’ve used the shortcode for this template (template=”Payments) to embed into a page and it’s displaying in the original English version but not in another language, it only translates and displays the {@first_name}, Card Type and Lesson Type fields. I would like to be able to display the other two as well. Can you help me with this? Thank you.
Thank you Jory. I used the shortcode you gave me and inserted the constant in the correct location but it’s still returning the “pod not found” message. I would like the show the extended user fields with a “user template” that I created but it only seems to works with special magic tags without the template.
I already added the required constant to wp-config.php. I placed it at the end of the template as follows,
/** Sets up WordPress vars and included files. */
require_once ABSPATH . ‘wp-settings.php’;
define(‘PODS_SHORTCODE_ALLOW_EVALUATE_TAGS’,true);
It is placed in the wp-config.php file found in my website folder. If it’s not placed correctly, please advise. Thank you so much for your help so far.
Thank you for your reply. Would you mind explaining what “1” is? I tried this shortcode you gave me but I’m getting a “Pod not found” message. I wish to show the user meta fields of a logged in user through template on a Woocommerce My Account Menu. At the moment, I can’t seem to find out how to get the template to work with a code snippet. So I’m typing out the content that I used in the User Template to show the special magic tags. I wish to use the User Template instead of typing out the text. The woocommerce code snippet is as follows,
// ——————
// 4. Add content to the new endpointfunction bbloomer_lesson_record_content() {
echo do_shortcode( ‘[pods name=”user” where=”ID = {@user.ID}”]Welcome back {@display_name}! You have {@remaining_lessons} remaining in your lesson card. <br /> You last lesson was on {@last_lesson}. Your card will expire on {@card_expiration_date}.[/pods]’);
echo “<u><h4>Lesson Dates</h4></u>”;
}add_action( ‘woocommerce_account_lesson-record_endpoint’, ‘bbloomer_lesson_record_content’ );
// Note: add_action must follow ‘woocommerce_account_{your-endpoint-slug}_endpoint’ format
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Simple Relationship Pods ShortcodeHi. Thank you for your response. ‘Card’ field contains 3 dropdown selections –
4 Lessons, 10 Lessons and 20 Lessons. The shortcode I used does not show the correct selection. I would like to be able to show one of the three selections on the Student Page. So if the Student Page ID is 2100, his card field selection should show 4 lessons. I hope I made myself more clear. I just need to know how to write a shortcode for this.Thank you Jory for your prompt response. I created a separate Pod under the label “Lesson Record” with 10 date fields to start with. When I click “new” to add a “new lesson record”, I used the Student Name as a title for the new post because I wish to have a different lesson record for different students. I current have two pods created. One is “Students” with names of students per post and the other is “Lesson Record” which also has names of students per post with date fields. Is it possible to display fields from one pod to another pod?