jim5471
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Mobile menu text colour displaying different to desktopHi @itsnickwhite,
This CSS should change the text colour back to black.
To add it to WordPress..
Go to Dashboard/Appearance/Editor/Styles then click the three dots on the second row at the top right of the screen – then click Additional CSS.
If you managed to find the entry box you can then paste in this …
@media screen and (max-width: 991px) {
.is-menu-dark .nav-menu ul li a:not(:hover), .is-header-dark:not(.is-menu-bar) .nav-menu ul li a:not(:hover) {
color: #000 !important;
}
}Forum: Fixing WordPress
In reply to: Phone Number and Address not changing on mobile DeviceYou seem to be using the Elementor plugin that allows different designs for PCs and mobile devices.
Details here… https://elementor.com/help/mobile-editing/
Forum: Fixing WordPress
In reply to: Pages show IP address rather than URLsince migrating this site from Flywheel
It looks to me that the system used to migrate your site inserted the IP instead of your new domain for some unknown reason on certain pages.
What I would do is load the ‘Better Search and Replace’ Plugin
https://www.ads-software.com/plugins/better-search-replace/
Then search the database for all incedences of https://216.194.171.244/ and replace with https://moorheadsculpturewalk.com/
The plugin lets you do a search first without replace so you can try it out.
As always backup the website first just in case !
Forum: Plugins
In reply to: [The Events Calendar] Wrong date for our eventsThe webpage you listed is still being cached. If you look at the html (‘View Page Source’ in your browser) and look at the last line you will see…
<!-- WP Fastest Cache file was created in 0.486947059631 seconds, on 09-01-24 20:54:42 -->
Its probably best to disable caching while you are debugging this.
- This reply was modified 1 year, 2 months ago by jim5471.
Forum: Fixing WordPress
In reply to: The Events Calendar pluginTry previous plus this…
Dashboard/Events/Settings/Display/Event template/Default Events template
If that doesn’t work then maybe try deleting a few of the <PHP> lines above the get_footer line. Your setup looks different to mine so you may need to experiment a bit.
- This reply was modified 1 year, 10 months ago by jim5471.
Forum: Fixing WordPress
In reply to: The Events Calendar pluginHi sbourg
The problem is with a template file in the Oceanwp theme.
oceanwp/tribe-events/default-template.php
If you temporarily rename that file you should get the result you need.
This isn’t a long term solution as the file will be rewritten when the theme is updated.
So you would need to create a CHILD theme with a [CHILD-NAME]/tribe-events/default-template.php file with the following content. You may also need to look at the site-breadcrumbs CSS if that is a problem.<?php /** * The Events Calendar plugin template. * * @package OceanWP WordPress theme */ get_header(); ?> <?php do_action('ocean_before_content_wrap'); ?> <div id="content-wrap" class="container clr"> <?php do_action('ocean_before_primary'); ?> <div id="primary" class=""> <?php do_action('ocean_before_content'); ?> <div id="content" class="site-content clr"> <?php do_action('ocean_before_content_inner'); ?> <div id="oceanwp-tribe-events"> <?php tribe_events_before_html(); ?> <?php tribe_get_view('single-event'); ?> <?php tribe_events_after_html(); ?> </div> <?php do_action('ocean_after_content_inner'); ?> </div><!-- #content --> </div><!-- #primary --> </div><!-- #content-wrap --> <?php do_action('ocean_after_content_wrap'); ?> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Some sections not showingIt is part of the theme.
You should ask your Theme supplier for help.
Where can you find the display is set to none?
If you open the F12 Inspector and search for the relevant section you should find this…
<div class="client_slider owl-carousel">
The associated CSS is this…
.owl-carousel { display: none; <<<<<<<<< width: 100%; z-index: 1; }
I would expect some javascript code to be triggered in some way and the owl-carousel would be selectively displaying parts of the content as a slideshow or animation. This isn’t working – it may be mis-configuration or a conflict with other plugins.
Forum: Fixing WordPress
In reply to: Some sections not showingHi mibil
The content is there but display is set ‘none’. It is controlled by the Owl Carousel so that is where you need to look. It may be a setting issue or a conflict with another plugin. Is it part of the Elementor plugin ?
Forum: Themes and Templates
In reply to: [Spacious] webp images for sliderMany thanks…
Forum: Plugins
In reply to: [The Events Calendar] Plugin is breaking get_the_ID()Hi wpexplorer
Confirmed same here – interesting to see what TEC support says.
Forum: Plugins
In reply to: [The Events Calendar] Plugin is breaking get_the_ID()Hi wpexplorer
Just tried your code in the functions.php file of my child classic theme and was getting the correct responses for get_the_ID and get_post_type.
Then loaded 2021 theme and added your code in that functions.php file – still works OK – all pages, posts, event list & single event pages that I looked at.
So unable to replicate your issue…
Forum: Fixing WordPress
In reply to: Requsting help finding the source of a phantom colorHi acefaiden
The hover color has the following inline css
.md-button.md-fab:not([disabled]):hover {
background-color: rgb(197,17,98);
}You could try adding that to your custom css with a new colour and add !important if that is needed.
As to the source that would need someone to have your theme loaded to see where it is coming from.
- This reply was modified 2 years ago by jim5471.
Forum: Plugins
In reply to: [Cookie Notice & Compliance for GDPR / CCPA] css errorAs others have said there is a CSS syntax error on the inline default colour for the bar background.
This can be fixed by going into the Cookie Settings and changing the bar background to a new colour and saving.
That fixed it for me – lets hope the plugin author, who seems to be on holiday, comes back and fixes it proper.
Forum: Fixing WordPress
In reply to: submenu problem persistsHi denis2035
The problem is with a CSS file entry from elementor. If there isn’t a setting you can change in that plugin you should ask for help on the elementor support page.
/wp-content/uploads/elementor/css/post-5.css Line 66
.site-header .site-navigation ul.menu li a {
color: #FFFFFF;
}Forum: Fixing WordPress
In reply to: classic-themes.min.css – what is it, do I need it?Hi Bozz
Glad to help.
Don’t have any info on why the file is there – just another way css can be added to a classic theme website – maybe a hangover or maybe something planned for the future. I don’t think the content is particulary relevant – just something in the file so it isn’t empty.