Forum Replies Created

Viewing 30 posts - 1 through 30 (of 89 total)
  • Author
    Posts
  • in reply to: 3 over 2 centered #1479116

    I went with this.. please lmk if there is a way in avia, thanks<div class=”wrapper”>
    <div class=”row1″>
    <span>Item1</span>
    <span>Item2</span>
    <span>Item3</span>
    </div>
    <div class=”row2″>
    <span>Item4</span>
    <span>Item5</span>
    </div>
    </div>

    .wrapper {
    display: grid;
    place-items: center;
    gap: 1rem;
    }
    .row1, .row2 {
    display: flex;
    gap: 1rem;
    }
    span {
    // element styles here.
    }

    • This reply was modified 3 weeks, 3 days ago by finchkelsey.
    in reply to: mfp-hide pop up #1477824

    Hi again, I really need that modal window working. I need to open a youTube video in a modal window soon, thank you.

    in reply to: mfp-hide pop up #1477806

    * fixed by updated header.php in child theme….Also, since updating to 7.0 today the theme footer page is not longer working, no footer is showing and a page is selected in the Enfold Child Footer theme options.
    Thank you

    • This reply was modified 1 month, 1 week ago by finchkelsey.
    in reply to: mfp-hide pop up #1477805

    Hi, I updated the functions.php as stated above, please go back in to see if you can get the modal to work, thank you.

    When the code below is removed from functions, the eror goes away, this snippet is old, I’m sure it needs and update. Thank you

    ////////////////////////////////////////////////Add Avia Builder to Custom Post Types
    add_filter(‘avf_builder_boxes’, ‘add_builder_to_posttype’);

    function add_builder_to_posttype($metabox)

    {
    foreach($metabox as &$meta)
    {
    if($meta[‘id’] == ‘avia_builder’ || $meta[‘id’] == ‘layout’)
    {
    $meta[‘page’][] = ‘makeitbeef’; /*instead add the name of the custom post type here*/
    $meta[‘page’][] = ‘cbnews’; /*instead add the name of the custom post type here*/
    }
    }

    return $metabox;
    }

    function custom_tab_section_script() { ?>
    <script>
    window.onload = function() {
    if (window.location.hash) {
    var hash = window.location.hash.substring(1);
    var targetElement = document.getElementById(hash);
    if (targetElement) {
    setTimeout(function() {
    var offset = targetElement.offsetTop;
    window.scrollTo({
    top: offset,
    behavior: “smooth”
    });
    }, 1000);
    }
    }
    };
    </script>
    <?php
    }
    add_action(‘wp_footer’, ‘custom_tab_section_script’, 99);

    in reply to: mfp-hide pop up #1477717

    Hi,

    Login credentials and info below, thank you

    in reply to: mfp-hide pop up #1477577

    Hi can do, but please include a copy of the function that doesn’t break the site. Then I can send you access.

    Thank you

    in reply to: mfp-hide pop up #1476904

    I have this ins functions,.

    function inline_popup_enabler(){
    ?>
    <script>
    (function($){
    $(document).ready(function() {
    $(‘.inline_popup’).magnificPopup({
    type:’inline’,
    midClick: true
    });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action(‘wp_footer’, ‘inline_popup_enabler’, 9999);add_action(‘wp_footer’, ‘inline_popup_enabler’);

    Show inline popup in a text box
    tried test-popup and mfp-hide in developer settings id and class
    tried the same in a color box..

    nothing, the pop upi content is not hiding and no pop up box.

    Please respond asap

    in reply to: Auto Excerpt #1476007

    Hey!

    Thanks its close.

    It is forcing shortcodes into some of the on page excerpt field boxes that I can’t overwrite with an edit and save.

    See page link from above.

    I would a hierarchy of on page excerpts at the top, thoughts?

    Thank you

    in reply to: Auto Excerpt #1476004

    Hi thank you,

    Should I expect to see the auto generated text in the excerpt box on the page or is this happening on the fly.

    I do not see the excerpts in the search results page after implementing the function.

    See example below.

    Thank you

    in reply to: CSS on Chrome and mobile #1475201

    Hi,

    I am trying to make the form fields white. The text that is black and grey.
    Thanks

    in reply to: CSS on Chrome and mobile #1475187

    I am referring to the gravity form css thank you

    in reply to: Change display order blog posts grid #1448617

    This worked, thanks

    //sort wp-recipe posts by date
    function wpse_81939_post_types_admin_order( $wp_query ) {
    if (is_admin()) {

    // Get the post type from the query
    $post_type = $wp_query->query[‘post_type’];

    if ( $post_type == ‘posttypehere’) {

    $wp_query->set(‘orderby’, ‘date’);

    $wp_query->set(‘order’, ‘DESC’);
    }
    }
    }
    add_filter(‘pre_get_posts’, ‘wpse_81939_post_types_admin_order’);

    • This reply was modified 10 months ago by finchkelsey.
    in reply to: Change display order blog posts grid #1448488

    Hi, that’s not a great solution then is it.

    Why does this not work,

    //sort posts by date
    add_filter(‘avia_blog_post_query’, ‘avia_modify_post_grid_query_desc’);
    function avia_modify_post_grid_query_desc( $query ) {
    $query[‘orderby’] = ‘date’;
    $query[‘order’] = ‘DESC’;
    return $query;
    }

    I would like to order our posts in wp-admin by newest, not alphabetical, this should be simple no?

    in reply to: Image slightly zoom image broken #1425262

    bump

    in reply to: Image slightly zoom image broken #1425175

    The site is a multisite so you have to go to the top -My Sites -Network Admin -Themes – Appearance

    I am not sure what was done which, I am hoping you will quickly be able to identify if some code was removed, which at this point I believe may have occured.

    Thank you

    in reply to: Image slightly zoom image broken #1425030

    Thank you

    Please help fix our footer. At some point there was a conflict and it was ‘turned’ off. The child theme is set to display a page, I think the actual ‘footer’ code may have been deleted from a template page, can you take a look with credentials above pls.

    Thank you kindly,

    • This reply was modified 1 year, 4 months ago by finchkelsey.
    in reply to: Full width tab container #1423645

    bump

    in reply to: Masonry toggle grid #1422168

    Ok, please remind me how to get a tag or category menu above the posts please on a bog page. Tag cloud or category menu, thank you.

    in reply to: Masonry toggle grid #1422064

    bump

    in reply to: Masonry toggle grid #1422060

    Here is the link, thank you

    in reply to: Footer page grid not stacking on mobile #1414585

    Thanks,

    This doesn’t seem to work. We had this issue q few months ago as well (see previous support question).
    Thoughts?
    Thanks

    in reply to: Header conflict #1376939

    Hi Mike,
    We have paid our developer a good amount of funds to determine what I already had. The issue is in the theme somewhere, please actually take a look this time. Please see his notes below in the private section.

    in reply to: Header conflict #1376008

    Hello, thank you. The error only occurs in child theme.

    in reply to: Header conflict #1375448

    Hi Mike,

    We are using a page for footer.
    The issue does not exist when I select widgets.

    I cannot determine anything in the child theme header that requires it to be active so I have turned it off.

    When the site uses the updated parent theme header we get the duplication of recipe in the footer on recipe pages only. The footer displays properly on all other pages.

    I have placed the section of code below from the header.php in the enfold theme that causes the duplication.

    Any help you could give me to understand what file I may need to edit or if any of this header code can be edited would be greatly appreciated.

    Thank you

    in reply to: Header conflict #1375286

    Something in this top section of the new header code is causing the conflict, please advise.

    in reply to: Header conflict #1375280

    Thank you, this is helpful.

    The recipes are inserted using the pro plugin Cooked, not ACF.

    I have fixed the duplication of recipes by replacing files in the child theme, could you please guide me as to what is causing the footer to be ‘missing’ now on all pages.

    I am learning, thank you for you help.

    in reply to: Header conflict #1375169

    Hey Mike,
    I’m not sure on all of them, we have a few contributors and some optimizations. I am not sure which files these use, sorry.

    When I toggle between the child header and the parent header the problem switches as well. So I assume the problem is there. Could you please look at the two header files for me.

    If I choose page for footer on either option the conflict occurs, it is not present when widgets are used.

    Thank you

    in reply to: Header conflict #1374399

    Thank you

    in reply to: Anchor link in tabs #1366448

    If you click on Alberta say, it opens. Then click on Saskatchewan, the content is blank.

    Please advise as this back and forth is taking way too long.

    Thank you

    in reply to: Anchor link in tabs #1366047

    Hi!

    Sorry to bug, but if we can’t find a solution we need to move on. I did reply to the email in my inbox a few days ago, so that was missed.

    Thanks

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