thetoolman123
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Zigcy Lite] Adding products to the homepage sliderHi,
Thanks for the reply.
I see, I have now done that, but how can I add actual products to the slider rather than posts? For example, I would like to link directly to a product page in the slider?
Many thanks!
Thanks for the reply.
Is it possible to apply to just posts rather than an array as I would probably be adding posts and rather not have to keep updating the array?
Forum: Fixing WordPress
In reply to: Admin Left menus not appearing on hover after 5.5 update?Awesome, thank you that fixed the menu issue, but I now have this error in admin:
This page generated the following warnings:
https://www.website.com/wp-content/plugins/wp-job-manager/assets/js/admin.min.js: jQuery.fn.live() is deprecated
Please make sure you are using the latest version of all of your plugins, and your theme. If you are, you may want to ask the developers of the code mentioned in the warnings for an update.Is it ok to update my plugins now? Or will this cause problems?
Thank you.
- This reply was modified 5 years, 11 months ago by thetoolman123.
Forum: Developing with WordPress
In reply to: including a PHP file using stylesheet URI?Thank you that worked fine.
I have the syntax wrong too.
This is what I ended up using:
<?php include( get_stylesheet_directory() . '/includes/myfile.php' ); ?>Hi,
Thanks for the reply.
I see what you mean. I will have a play around with it and let you know how I get on 🙂
Thanks again!
Hi there,
Thanks for the reply.That makes sense. So would I have to add the date to each post in the body? At the moment I have the publish date set:
I also have the listed date on the page, but it isn’t part of the post’s body:
https://ibb.co/1LtcJTRWould either of these dates work?
Thanks again!
If you can’t tell me which file it is in or not in a file, is it controlled via admin?
This is what I have in my Jobs section in
Search Appearance > Jobs (job_listing)
https://ibb.co/Gx8Nm5dIf anyone else can help, it would be great. It’s effecting my search results so need to fix it ASAP
Thanks
I understand, but are you able to tell me if this is the correct file? I will be making the changes myself, so I will be the only one to blame if it breaks!
Thanks for the reply.
I have found this in breadcrumb-hook.php
<script type="application/ld+json"> { "@context": "http://schema.org", "@type": "BreadcrumbList", "itemListElement": [ <?php $i = 1; if(!empty($breadcrumb_items)) foreach ($breadcrumb_items as $item): $title = !empty($item['title']) ? $item['title'] : ''; $link = isset($item['link']) ? $item['link'] : ''; if(!empty($title)){ ?> { "@type": "ListItem", "position":<?php echo $i; ?>, "item": { "@id": "<?php echo $link; ?>", "name": "<?php echo $title; ?>" } }<?php if($i < $breadcrumb_items_count) echo ','; ?> <?php } $i++; endforeach; ?> ] } </script>Can I override this, or remove it completely? If so, do I need to change this line?:
"name": "<?php echo $title; ?>"Thanks
Forum: Plugins
In reply to: [WP Job Manager] Removing /jobs from the URLThanks for the reply. I see, that makes sense that it’s coming from there.
However, I can’t seem to find anywhere to change it. I have searched all my files and also checked under the Yoast settings (SEO > Search Appearance).
Do you have any idea where this would be to modify it?
Thanks
Forum: Developing with WordPress
In reply to: Adding a JS file to a specific template file?Thank you 🙂 That worked perfectly!
Cheers!
Forum: Developing with WordPress
In reply to: Blog posts repeating in content.phpI think I worked it out, I should have been wrapping this in my index.php
Forum: Fixing WordPress
In reply to: Pagination arrows now showingThanks for the reply.
I will try that. For the moment, I changed them manually added the font awesome HTML tag
Forum: Fixing WordPress
In reply to: Adding a file via wp-adminThanks I will give it a go 🙂
Forum: Fixing WordPress
In reply to: creating shortcode that contains code?Thank you, I have set them up using this:
https://deliciousthemes.com/how-to-integrate-google-adsense-into-wordpress-shortcodes/Thank you very much!