l r
Forum Replies Created
-
Hi Priscilla
Thank you for the reply
I had already viewed site.example search and could see that only main pages were indexed.
Some images are being picked up by the images section of google, not as well as I would expect and mostly from the old website and externals.
BUT
I checked as you asked on the view source on sitemap.xml and it looks like the images are listed for galleries.
__Perhaps Albums is the problem ( not galleries) ?
See: https://www.awesomescreenshot.com/image/5208637/fc5313ffcfb4ec818df3392048a0ddbf
In this particular example ‘galleries’ is my home page.
This is displaying a nextgen ‘album’ ( A collection of galleries)
The images on my home page are stated as zero on the sitemap.But I know the home page contains many preview images linking to the single galleries.Albums are often used on my home page or main sections.
As this is usually an important landing page it does have significant impact if it is not indexing properly?
Or have I missed something obvious?NOTE also
Redirect attachment URLs to the attachment itself?” IS set to “Yes”.
…but even if I am NOT using lightbox the images redirect from google to the parent gallery. Never to the single image page.
many thanks
lr- This reply was modified 5 years, 12 months ago by Jan Dembowski. Reason: Expanded short link
Forum: Plugins
In reply to: [Contextual Related Posts] Exclude post ids not workingHi Ajay
Thanks yes that works.Forum: Fixing WordPress
In reply to: Child theme print.cssHi Michael
I found the following on the forum:
// Queue parent style followed by child/customized style add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles', PHP_INT_MAX); function theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/print.css' ); wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/print.css', array( 'parent-style' ) ); }This does not work at all. The parent print.css is still being called.
Also, this looks to me like it is trying to call the parent stylesheet and then the child one. What I would like to do is dequeue the parent stylesheet and then call the child one only.
I can’t find any sample code for this, and my PHP skills aren’t up to the challenge.
Thanks for your help!Hi Tim
Thanks for your reply.
I have already tried adapting this code, but sadly it is beyond me.
Can you possibly give me any pointers as to how to make it work for #_CATEGORYNOTES ?
thanks!Hello I have submitted a ticket… thank you..
I have the same problem ‘ Cleanup Orphan Records’
hangs at 75%Hi
Thanks yes that would be great. We use this plugin on many websites and that would be very useful!Forum: Plugins
In reply to: [Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] NextGen errorHi,
Thanks for your reply to this and the advice!
(Sorry for the delay, I’ve been away for a week or so.)I have installed this plugin.
I was slightly worried about it as I don’t really understand which transients I should delete or keep.
I have tried deleting the transient that referenced photocrati, and this does seem to have sped things up.
So I will keep on keeping an eye on the error log, and the speed of the website.For anyone else with this problem.
Check the shortcode in source code /text mode in the editor.
I had lots of span tags breaking the shortcode (probably due to being pasted in visual mode. )<p class=”p1″><span class=”s1″>[email-download download_id=”</span><span class=”s2″>1142″</span><span class=”s1″> contact_form_id=”</span><span class=”s3″>1146″</span><span class=”s1″>]</span></p>
Of course that won’t work!Solution: Paste shortcode in text only mode.
This might help someone else?Forum: Fixing WordPress
In reply to: Hiding images in the media libraryThanks for your reply bdbrown,
I’ve been scratching my head over this for a while now and just can’t get it to work.
This code works so that one editor can’t see another editors’ uploads. But I need it to be role specific. So the role of editor can’t see any uploads by my custom role.
Does anyone have any ideas?Forum: Plugins
In reply to: [Custom Post Type UI] Number of posts and display order on taxonomy templateThanks Michael.
I’ve managed to figure it out.
I couldn’t figure out how to get the floor number from the array, but I’ve got it by splitting the url. Most importantly it works!!
Thanks for your help and patience!Forum: Plugins
In reply to: [Custom Post Type UI] Number of posts and display order on taxonomy templateMichael,
unfortunately I can only get this to work if I hard code the floor number in the array.
I’ve tried using a variable but it’s not happening.
Do you take on small pieces of development work and would you be interested in helping us out with this?
Thanks!Forum: Plugins
In reply to: [Custom Post Type UI] Number of posts and display order on taxonomy templateThanks for the help Michael.
Absolutely get the point about the hand holding.
That link might do the job – I’m getting there!Forum: Plugins
In reply to: [Custom Post Type UI] Number of posts and display order on taxonomy templateThanks for your reply Michael.
It’s getting closer!
I added post type of directory, so I now have:$args = array( 'post_type' => 'directory', 'posts_per_page' => -1, 'orderby' => 'title', 'order' => 'ASC' ); query_posts($args); ?>But this is displaying all rooms on all floors. Can you possibly help me to filter out just for one floor?
Forum: Plugins
In reply to: [Custom Menu Wizard Widget] Show submenu on postsThank you Wizzud!
That works!My only slight issue is that if the post is in more than one category, the menu can switch to another sub-menu that has the other category in it – I presume that’s unavoidable?