?sa
Forum Replies Created
-
Thank you for your answer. I will try this.
Have a lovely holliday!
I am having the same issue. Can you help me with this?
Regards ?sa
Forum: Themes and Templates
In reply to: [One Page Express] Useing overlappable content in pagesOh no, almost like a charm. I just realized that the bottom of the header image has a white background behind the divider that doesn’t match the background of the rest of the page. On the posts the background of the divder is the same as the rest of the page. Can this be fixed?
Forum: Themes and Templates
In reply to: [One Page Express] Useing overlappable content in pagesThank you so very much! It worked like a charm. Now my page is almost perfect. Only need to add a little more content ??
Regards, ?saForum: Themes and Templates
In reply to: [One Page Express] Useing overlappable content in pagesThe link is above and the specific page is Om mig
https://www.boholm.se/ommigNever mind, I solved it. I used following shortcode:
[display-posts post_type=resedagbok taxonomy=resa tax_term=current exclude_current=false order=ASC]combined with a code snippet in functions.php to only show parents on the archive page (but show all in admin UI):
function mf_show_travel_books( $query ) {if ( ! is_admin() && $query->is_post_type_archive(‘resedagbok’) ) {
// this line tells it to ONLY return parent items
$query->set( ‘post_parent’, 0 );
}
}
add_action( ‘pre_get_posts’, ‘mf_show_travel_books’ );Hi again,
Thank you for the reply. I see that I can use a latest post widget in my notification email, but does that mean that the email will only be sent to the users who have premission to read the new post? Or will all users get the email, but only the ones with permission will be able to read the post?
Regards, ?sa
Forum: Plugins
In reply to: [Music Sheet Viewer] Viewer only viewes first page of sheet musicThis is supergreat! It will make my life a lot easier. thank you so much.
Regards, ?saForum: Plugins
In reply to: [Custom Content Shortcode] Limited to fields from ACF and WCK?I would also like to know how to find out what fields are available for a specific post type.
- This reply was modified 5 years ago by ?sa.
Forum: Plugins
In reply to: [Event Tickets and Registration] Hide RSVP if not logged inHi again,
I solved it and thought I’d post the solution here for others with the same issue.
I made a copy of the file plugins\event-tickets\src\views\tickets\rsvp.php and put it in themes\”my-theme”\tribe-events\tickets.
Then I added
if ( is_user_logged_in() ) {
in the beginning of the file and a } in the end. Voila!