Forum Replies Created
-
AuthorPosts
-
Jamal
ParticipantI have the latest files installed Tom and ready to give this a try.
Jamal
ParticipantAbsolutely. Just sent you my email adress.
Jamal
ParticipantBy looking at a plugin you recommended on GP support forum i found the problem was my code. I was missing
, 'with_front' => true
in my rewrite. Major headache solved, i wont be bothering you for a while now. Thanks very much for your help and understanding.Jamal
ParticipantThanks for the reply 🙂
Jamal
ParticipantI think there must be something messed up with the code im using to genereate my CPTs. I have tried many times re-saving the permalinks to no avail. As i don’t require the wpsp hooks and other helpful styling for current project i’m considering using default GP blog and hopefully this problem goes away. Will let you know. Thanks so far !
Jamal
ParticipantI tried setting a 500×500 px image and some titles actually aligned perfectly but some didn’t. http://i.imgur.com/w4zL9Lh.png
Jamal
ParticipantHi again
I’m having a pagination issue again so i thought i will use this topic. Please take a look here http://ermias.kebhee.se/paintings/ , that page is displaying custom post type created using this code http://pastebin.com/mStifp00. I tried deactivating plugins and so on but nothing helped.
Jamal
ParticipantIt doesn’t seem to change anything Tom. Right now it’s easier for me to put a right margin on the entry title so i will go with that option when the site is finished. But in the meantime,im ready to test out any solution you might come up with.
Thanks !Jamal
ParticipantThis is the page http://ermias.kebhee.se/paintings/
Jamal
ParticipantWith image below title and aligned left this is what i have http://imgur.com/Otd01Yu
With image above title and aligned center i get this http://imgur.com/C9jNw7R
What i would like to do http://imgur.com/Q4toIlI
I hope that’s more clearer now. Thanks !
Jamal
ParticipantGreat ! Looking forward to it
Jamal
ParticipantOh and – please make the “Load More” text editable too
This might be helpful https://wpshowposts.com/support/topic/change-load-more-text/#post-496
Jamal
ParticipantThanks for your awesome products and even better support. I’m in no hurry regarding the other question, get well soon.
Jamal
ParticipantWell i think this one is solved, please take a look if you can and let me know if there is a simpler or better way to do it
//Wpsp show meta instead of content add_action( 'wpsp_before_content','wpsp_add_custom_meta' ); function wpsp_add_custom_meta() { $meta = get_post_meta( get_the_ID(), 'kundcase_site_url', true ); if ( isset( $meta ) && '' !== $meta ) echo '<a class="button" href="'.$meta.'">Besök sidan</a>'; echo '<a class="button alignright" href="'.get_permalink( $id ).'">Läs Mer</a>'; }
Jamal
ParticipantOk i realized i asked you a similar question before and this is how far i have come now
//Kundcase show links instead of content add_action( 'wpsp_before_content','wpsp_add_custom_meta' ); function wpsp_add_custom_meta() { $meta = get_post_meta( get_the_ID(), 'kundcase_site_url', true ); if ( isset( $meta ) && '' !== $meta ) echo '<a class="button" href="'.$meta.'">Besök sidan</a>'; }
How can i fetch and show post permalink beside this link?
-
AuthorPosts