Forum Replies Created

Viewing 15 replies - 1 through 15 (of 107 total)
  • Hi @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;
    }
    }

    You seem to be using the Elementor plugin that allows different designs for PCs and mobile devices.

    Details here… https://elementor.com/help/mobile-editing/

    since 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 !

    Hi tom_on_wheels

    The 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.

    Try 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.

    Hi 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(); ?>
    

    It 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.

    Hi 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 ?

    Thread Starter jim5471

    (@jim5471)

    Many thanks…

    Hi wpexplorer

    Confirmed same here – interesting to see what TEC support says.

    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…

    jim5471

    (@jim5471)

    Hi 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.
    jim5471

    (@jim5471)

    As 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.

    jim5471

    (@jim5471)

    Hi 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;
    }

    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.

Viewing 15 replies - 1 through 15 (of 107 total)