Forum Replies Created
-
AuthorPosts
-
Jamal
ParticipantI can scroll the page horizontally on mobile but no scrollbar appears. Also top part of sticky menu is also hidden. This is happening in two sites only on the pages where i have wpsp with custom post types.
Jamal
ParticipantThis is the site Tom, http://pizzeriaviking.info/var-meny/
Jamal
ParticipantSeems the fix is not working for me unfortunately but i can wait for the permanent fix so no problem for now. Thanks !
Jamal
ParticipantThanks for the update,much appreciated.
Jamal
ParticipantThanks !
Jamal
ParticipantApplying flex-grow to .wp-show-posts-image works very well for my case. Amazing support again,thanks !
Jamal
ParticipantYes that would be perfect. Can’t wait !
Jamal
ParticipantPlease check the screenshot above, when the post title is long the read more buttons are not a ligned vertically. I don’t know if its possible to give that button a fixed position relative to container buttom. Thanks
Jamal
ParticipantTom, you are a genius ! Thank you very much for helping out, i don’t have enough words to express my gratitude.
Jamal
ParticipantPlease take a look at this site as mentioned in this topic.
Or like this demo but i think its better if it looks like slider buttons.
Jamal
ParticipantWorks like a charm 🙂
One last thing, any way to make the read more button always hug the bottom of the card/column?
Jamal
ParticipantIm using the latest version of WPSP and this is how they seem to be adding the “find out more …” link http://pastebin.com/c8UfkHUH
What i wanted to show seems to be a post meta displayed using this https://raw.githubusercontent.com/wiredimpact/wired-impact-volunteer-management/master/templates/opp-single-meta.php
Would really appreciate any help. Thanks
Jamal
ParticipantI’m not sure if i understood correctly but i wanted to show you what i have when i remove the CSS to hide the read more tag. Did you mean the “Find out more” should not be shown in this case?
If i wanted to show this instead of the excerpt how would i go about it? Do i need to edit the theme’s single.php at all or is it enough with wsps hooks? If yes, do i need to chage anything in this part of the hook?
$meta = get_post_meta( get_the_ID(), '_your_custom_meta_key', true ); if ( isset( $meta ) && '' !== $meta ) echo $meta;
Sorry if its beyond the scope of the plugin support,im unable to get my head round it and will appreciate a little guide. Thanks !
Jamal
ParticipantYes the excerpt is still there when i save but i have now decided against creating own excerpt for i have found a way to hide “Find out more” text that plugin was generating. Sorry to have wasted your time and thanks for all the help, it will be useful in another project for sure.
Jamal
ParticipantI think im ready to give this another try, help me please.
I have the code below to include excerpt metabox, im assuming the excerpt will be saved automatically?//Enables the Excerpt meta box in volunteer Mgmt edit screen. function wpcodex_add_excerpt_support_for_volunteer_opp() { add_post_type_support( 'volunteer_opp', 'excerpt' ); } add_action( 'init', 'wpcodex_add_excerpt_support_volunteer_opp' );
-
AuthorPosts