Patz
Forum Replies Created
-
Hi,
Thanks for your response 🙂
This is the problem I’m having – even after deleting the plugin there are no notifications at all. They don’t come back, and I have a lot of plugins that are old so I know there should be many notifications!
I just meant the link that appears to update plugins (and wordpress) when there is an update. These usually appear as part of the notification right, so that’s why I’m not seeing them.
Forum: Plugins
In reply to: [Fullscreen Menu] How to stop page going to top on click?@mezvin that’s awesome, nice one!
Forum: Plugins
In reply to: [Fullscreen Menu] How to stop page going to top on click?@mezvin yes, that is the question. Are you asking as well or you have the answer? 😉
Forum: Plugins
In reply to: [The Events Calendar] How to display time in Visual ComposerHi again,
Could anyone just help me with a line of code that would pull this through in general (not wbbakery specific?) That’s all I need, can figure out the rest!
Thanks
Pat
Ah I see!
Can you point me in the direction of what to search for? Not really sure how to word this specifically and had no luck so far 🙂
Thanks,
Pat
Hi Jory,
Thanks for your reply 🙂
I’m using wordpress 5.2.4 with Notio theme and WPBakery, all other plugins disabled apart from pods!
https://prnt.sc/pmlyte
https://prnt.sc/pmlz7y
http://prnt.sc/pmlziw
https://prnt.sc/pmm004Is this enough info?
Pat
Actually I can’t figure out any way at all to display my custom fields on the single posts other than using shortcodes in the post itself, but this seems long winded to have to do each time? I want them there by default 🙂
I have watched lots of videos as well but can’t find a simpler answer than to use templates in this way, which for some reason isn’t working. Is the only other way using code, or am I missing something again?
Oh no!!! Is there anyway I can have a previous version?!! I updated yesterday without seeing this…
I just need it temporarily – my client wants to move their site over to a completely new server which is already running latest apache but it won’t be for about a month! Really need this working if pos…
Forum: Fixing WordPress
In reply to: How to pull through pages according to template name…Sorry to bump this post, but I know it’s only a tiny error in the things I’ve tried (above)…but just can’t resolve this, can’t get it to work!!
Forum: Fixing WordPress
In reply to: How to pull through pages according to template name…Pages!
http://www.tashmina.co.uk/Each of those thumbnails on the homepage is actually a page (not a post), the following code is bringing in all pages with a featured image added.
function my_get_posts( $query ) { if ( $query->is_home() && $query->is_main_query() ) { $query->set( 'post_type', array( 'page ') ); $query->set( 'meta_key', '_thumbnail_id' ); $query->set('orderby', 'rand'); $query->set('posts_per_page', '100'); } } add_filter( 'pre_get_posts', 'my_get_posts' );But we want to change it so that it pulls through only pages with ‘artist.php’ instead. This is because we to be able add featured images to other pages for other reasons but do not want these pages to appear on the homepage.
I’m sure it’s possible with a pretty tiny amendment to this existing code 🙂
Forum: Fixing WordPress
In reply to: How to pull through pages according to template name…Hi,
Thanks for your reply!
It also breaks it, but I think you misunderstood my question 🙂
I still want these pages to display on the homepage, but instead of pages with featured images (as it does now) I want only pages that are assigned to artist.php template.
Does that make sense?
Forum: Plugins
In reply to: [Flickr Justified Gallery] Maximum number of photos seems to be 500…Thanks for the reply.
Hmmm that’s annoying. This was gonna be my workaround for those annoying ads! Maybe I’ll divide it into 2 galleries, part one and two and just use 2 short codes on the page. That should work.
Thanks 🙂
Forum: Plugins
In reply to: [F2 Tumblr Widget] URL is not workingOK, yes that works!
Thanks 🙂
Forum: Plugins
In reply to: How to display tags archive of custom post types..2 mins after posting this I appear to have typed the right combination of words for search and came across this, which does it 🙂
function post_type_tags_fix($request) { if ( isset($request['tag']) && !isset($request['post_type']) ) $request['post_type'] = 'any'; return $request; } add_filter('request', 'post_type_tags_fix');Hope this helps anyone else searching for the same thing…
Forum: Plugins
In reply to: [WP-Invoice - Web Invoice and Billing] Using this plugin with Sage PayHi Anton,
Yes I would really like to request this as I cannot find another alternative as good as this plugin! I can’t see where this form you speak of is though?
Pat