Forum Replies Created

Viewing 30 posts - 1 through 30 (of 151 total)
  • Author
    Posts
  • in reply to: Remove Image Title When Hovering Over Masonry Blog Post #1283495

    Hi Victoria, our designer tried that, he said it removes the title attribute on the link, not the image. Just for clarity, this is what we would like to remove:

    http://capblog.raisonbrandsdev.com/wp-content/uploads/2021/02/Tooltip-scaled.jpg

    in reply to: Remove Image Title When Hovering Over Masonry Blog Post #1282937

    Hi Victoria, Click the “Show More” button, the articles that populate below will have the tool tip.

    Our programmer deleted the titles for the first three so wee could show them to the client.

    Thanks!

    in reply to: 1 Page / Template Cannot Be Updated #1233554

    Hey Rikard,

    Just an update and sorry for wasting your time, but maybe this will help someone in the future–it turned out to be a really weird mod security error on the host, A Small Orange (random I know).

    For whatever reason, mod_security is blocking access to the admin-ajax.php file on that specific page only, host whitelisted it and problem solved.

    Thanks again!

    in reply to: 1 Page / Template Cannot Be Updated #1231798

    Thanks Rikard,

    Sorry for the delay–ended up having to take some time off last week.

    I just temporarily disabled the plugin in question and the problem remained.

    Any other thoughts?

    Thanks again!

    in reply to: 1 Page / Template Cannot Be Updated #1230018

    Hi Rikard,

    Yes please, if you’d be so kind you definitely have permission to enable debug mode and see what you can find out.

    Thanks!

    in reply to: 1 Page / Template Cannot Be Updated #1229241

    Allrighty,

    So we updated to 4.7.5 and we still have the same issue, as a matter of fact that specific page won’t load at all to even try an update. Like before all the other pages seem fine.

    Any ideas would be very much appreciated!

    in reply to: 1 Page / Template Cannot Be Updated #1229211

    Thanks Rikard,

    I’ll let the client know and get the ball rolling, will let you know if it works or not.

    Have a great day!

    in reply to: Sublevel Link Position #1217196

    Thanks Jordan,

    But unfortunately that just made the box with the dropdown links oddly proportioned and offset the sub-level links by a hair.

    in reply to: Sublevel Link Position #1216534

    Thanks Rikard,

    So that moves it over to the right, which is definitely better.
    But how do I get the sub item below its parent with an indent?

    Hardware
    Microfiber Mops
    Mops Comparison Guide
    Wipes
    Wipes Comparison Guide

    Thanks again!

    in reply to: Version 4.7.1 Has Made My Site Extremely Slow #1180034

    Hey Basilis,

    Sorry for the delay, turns out it was not an issue with the update, but a problem between my DNS host and my website host.

    Thanks!

    in reply to: Preferred Lazy Load Solution for Enfold? #1163443

    Thanks for the idea and sorry for the late response, was traveling for work.

    Unfortunately Rocket introduced the same issues that we had with Smush.

    Mind taking a look at the front end of the Dev site, which has lazy load enabled, and our live site, which does not, for any
    ideas of what’s going on?

    Thanks!

    in reply to: Image Hotspots & Tooltips Won't Display #1159353

    Thanks for the response and sorry for the delay on my part!

    The client is scheduled for an update in a month (and won’t want to pay for it before then) so I’ll check out your solution once we cross that bridge.

    Thanks again!

    in reply to: Product Sorting is not working #1080075

    Can anyone help with this?

    in reply to: Blog Category Search Result Format #1079935

    All righty, that wil take a little bit of doing to set up a dev space (we just launched the site) but I’ll let you know if that does the trick in a week or so.

    Thanks Ismael

    in reply to: Looping videos in layer slider #1078412

    Yes I have found a solution that works. Thanks!

    in reply to: Blog Category Search Result Format #1077855

    Sure thing and thanks, see below.

    in reply to: Blog Category Search Result Format #1076484

    Hey Basilis,

    Thanks for the link, I used the first suggestion as my problem has nothing to do with Woo prices. Unofrtunately, the blog category results look exactly the same.

    Please let me know if I screwed something up.

    search.php file (Enfold, site runs a child theme)

    <?php
    if ( !defined(‘ABSPATH’) ){ die(); }

    global $avia_config;

    /*
    * get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
    */
    get_header();

    // allows to customize the layout
    do_action( ‘ava_search_after_get_header’ );

    $results = avia_which_archive();
    echo avia_title(array(‘title’ => $results ));

    do_action( ‘ava_after_main_title’ );
    ?>

    <div class=’container_wrap container_wrap_first main_color <?php avia_layout_class( ‘main’ ); ?>’>

    <div class=’container’>

    <main class=’content template-search <?php avia_layout_class( ‘content’ ); ?> units’ <?php avia_markup_helper(array(‘context’ => ‘content’));?>>

    <div class=’page-heading-container clearfix’>
    <section class=”search_form_field”>
    <?php
    echo “<h4>”.__(‘New Search’,’avia_framework’).”</h4>”;
    echo “<p>”.__(‘If you are not happy with the results below please do another search’,’avia_framework’).”</p>”;

    get_search_form();
    echo “<span class=’author-extra-border’></span>”;
    ?>
    </section>
    </div>

    <?php
    if(!empty($_GET[‘s’]) || have_posts())
    {
    echo “<h4 class=’extra-mini-title widgettitle’>{$results}</h4>”;

    /* Run the loop to output the posts.
    * If you want to overload this in a child theme then include a file
    * called loop-search.php and that will be used instead.
    */
    $more = 0;
    global $posts;
    $post_ids = array();
    foreach($posts as $post) $post_ids[] = $post->ID;

    if(!empty($post_ids))
    {
    $atts = array(
    ‘type’ => ‘grid’,
    ‘items’ => get_option(‘posts_per_page’),
    ‘columns’ => 3,
    ‘class’ => ‘avia-builder-el-no-sibling’,
    ‘paginate’ => ‘yes’,
    ‘use_main_query_pagination’ => ‘yes’,
    ‘custom_query’ => array( ‘post__in’=>$post_ids, ‘post_type’=>get_post_types() )
    );

    $blog = new avia_product_slider($atts);
    $blog->query_entries();
    echo “<div class=’entry-content-wrapper’>”.$blog->html().”</div>”;
    }

    ?>

    <!–end content–>
    </main>

    <?php

    //get the sidebar
    $avia_config[‘currently_viewing’] = ‘page’;

    get_sidebar();

    ?>

    </div><!–end container–>

    </div><!– close default .container_wrap element –>

    <?php get_footer(); ?>

    Then Quick CSS:

    .template-search .post-entry.slide-entry {
    position: relative;
    clear: none;
    }

    #top .av-main-nav > li > a {
    font-weight: normal !important;
    }

    .avia-menu-fx {
    display: none;
    }

    .avia-layerslider.avia-shadow {
    box-shadow: none !important;
    }

    .av-iconlist-small li {
    margin-bottom: 3px;
    font-family: “adelle-sans”,sans-serif !important;
    font-style: normal;
    font-weight: 300;
    }

    .avia-button {
    font-size: 18px!important;
    }

    .avia-arrow {
    display: none;
    }

    #top .av-caption-style-overlay a.av-masonry-item-with-image .av-inner-masonry-content {
    background:rgba(236,0,140,0.9) !important;
    }

    .av-masonry-sort * {
    font-size: 17px;
    }

    .avia-testimonial-content {
    background-color: #ffffff!important;
    border-color: rgba(255,255,255,0.7)!important;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    }

    .avia-testimonial-name {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #000000!important;
    font-weight: 300;

    }

    .avia-testimonial-subtitle {
    font-size: 17px !important;
    #595959!important;
    }

    .home #layer_slider_1 .ls-wrapper.ls-in-out {
    text-shadow: 0px 0px 15px #000000;
    }

    @media only screen and (max-width: 767px) {
    figcaption.av-inner-masonry-content {
    display: none!important;
    }}

    span.logo {
    margin-top: 5px;
    }

    #footer .widget {
    text-align: center;
    }

    #footer {
    padding: 0;
    }

    #footer p {
    font-size: 13px!important;
    }

    #footer .widget{
    margin-bottom:0px!important;
    }

    #socket .copyright {
    text-align: center;
    width: 100%;
    }

    #socket .social_bookmarks {
    text-align: center;
    width: 60%;
    }

    #footer {
    padding-bottom: 0;
    }

    .widgettitle {
    text-transform: none;
    }

    in reply to: Looping videos in layer slider #1075566

    Thank you. I can’t use the color backgound because I need the video to play sound.

    Is there any way I can at least have a fallback image so when the video is done playing the slider doesn’t just go blank?

    in reply to: Weird Mobile Stacking on Specifically on iPhone #1041279

    Hi Victoria,

    Apologies for the late response, was out of town on business. To the unrelated poster, come on buddy, you want immediate assistance, hire a freelancer and pay them by the hour.

    Anyhow, yes, you are correct, on hover it is supposed to be red with white type. Check the private data and I will try and be as detailed as possible.

    in reply to: Responsive Logo and / or Menu Items #1038624

    I’ve actually made some adjustments to work around this issue but am now having a different one that I’m hoping you could help with.

    Before the menu logo completely shrinks into position as you scroll down, it moves to the bottom of the menu bar before snapping into the center as a smaller logo. Though it’s unnoticeable if you scroll fast, it does seem a little glitchy.

    https://drive.google.com/file/d/1VX7BUKLh-4lGp3RzdWIgqRBa_I5cMFlX/view?usp=sharing

    Is there a way to fix this so that it doesn’t move downward but stays center in the menu bar?

    – Stephanie

    in reply to: Advanced Layer Slider Pop Up Huge White Space #1038618

    You may close it, thank you! I figured out how to update the code in case I create any additional popups, just update #layer_slider_2 to whatever order number that slider is.

    – Stephanie

    in reply to: Advanced Layer Slider Line Height Not Working #1037685

    That seems to have worked!
    Thank you so, so much Nikko!

    – Stephanie

    in reply to: Advanced Layer Slider Pop Up Huge White Space #1037684

    That worked!
    I put the code in Enfold > General Styling > Quick CSS
    Thanks a million, Victoria!

    – Stephanie

    in reply to: Advanced Layer Slider Pop Up Huge White Space #1034626

    Sorry, try this link:

    The blank white space is all the way at the bottom of the home page.

    The Advanced layer slider is labeled “Pop Up” if you’re working in the ALS settings.

    LMK if you need anything else!

    in reply to: Weird Mobile Stacking on Specifically on iPhone #1034172

    Hi Victoria,

    Just to be clear, that strange black bar issue that just cropped up is only Chrome. Looks fine on FireFox and Edge.

    As for the mobile stacking issue, I just changed the mobile stacking to begin at tablet width. Creates odd margins between fields that I do not like but it’s better than it was.

    Thanks

    in reply to: Weird Mobile Stacking on Specifically on iPhone #1032752

    Thanks Victoria,

    Unfortunately, that seems to generate a different error, now after going to an individual gallery and pressing back to the gallery landing pages, the first box looks fine, but it’s just a white screen below–I don’t even see a footer.

    Unsure why it would be related, but now I’m also getting an error on Chrome when using the menu (both on desktop and mobile.), I don’t even know how to describe it–items seem to be highlighted at random, sometimes in the correct red, sometimes in pure black, some items have text on text!

    That new error is Chrome specific however, FF, Edge and Safari all look as it should.

    Thanks!

    in reply to: Weird Mobile Stacking on Specifically on iPhone #1030908

    Hi Victoria,

    Cleared the cache from the server and the cache on the iPhone 8, still does the same thing. BUT, we did notice an additional detail. You have to press the back button to get the error to occur.

    You can visit the gallery landing page, select an individual gallery, and then go back to the gallery landing page via the hamburger navigation and all looks good. But if you click the back button from an individual gallery to the gallery landing page, everything gets jacked up as shown in the pics. Looks like it becomes formatted for half the screen size.

    Thanks for your help!

    Apologies for the late reply, was on break last week.

    We just linked the popup to a MailChimp form integrated onto the page, rather than integrating the form directly into the popup–that did the trick.

    So whatever the problem is, it seems to be related to the layerslider popup.

    Let me know if you’re still curious and I’ll dig up server access for you. If not, we worked around the issue and it’s all good.

    Thanks!

    Hi Ismeal,

    Thanks for taking a look, but I don’t know what to tell you other than it does not work on Chrome or FF unless you are logged in.

    Oddly enough it isn’t doing the exact same thing it did last week, but the form renders differently if you are logged in versus not, and an email address will only go to the Mail Chimp list if you are logged into Enfold.

    In the private data is a quick video showing what I’m talking about.

    And we don’t have any GDPR setting enabled–no visitors from the UK to speak of.

    Thanks,

    • This reply was modified 5 years, 5 months ago by raisonbrands. Reason: Forgot to answer a question posed by the moderator

    Sorry, they started promoting the site today so I had to take the forms off the site, below in in Private Content are links where you can see the forms live. Please disregard the private data above and use the info below.

Viewing 30 posts - 1 through 30 (of 151 total)