Forum Replies Created

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • Thanks for you suggestion, but it turns out that it wasn’t related to Enfold. It was a bug in WPML that was fixed in their last update.

    in reply to: Remove link from page and post H1 titles (Permanent Link) #541714

    Thanks Andy, but this is exactly what I don’t want – two H1 tags and just hide one of them.

    You can’t fool Google by hiding the addtional H1 tag with CSS. I would like the HTML of the page to be rendered with only one H1 tag.

    Thanks!

    in reply to: Remove link from page and post H1 titles (Permanent Link) #539865

    Almost, not quite there: What you sent replaces the “Blog – Latest News” title with the post title in a H1 tag. That’s great!

    But, there’s another post title which is also a H1 tag and has the “Permanent Link”. I would like to remove this title completely, so the page will be rendered with only one H1.

    See here:
    http://yaniv.qwaisdns.com/archive1/?p=25 (see the dark grey title, just above the date)

    in reply to: Remove link from page and post H1 titles (Permanent Link) #539850

    Thanks, but this works only on pages but not on posts. How do I do the same on posts?

    • This reply was modified 9 years ago by yaniv691.
    in reply to: Show forum sidebar on all bbpress pages #532264

    Sorry, but due to the client’s request I can’t give you the link or access to the site. I will gladly relay all related configuration in the admin and theme options. What should I check?

    in reply to: Can't Edit Text Block #532011

    I think this is due to accidental un-closed HTML tags and/or attributes without closing quotes. What I did to fix was this:

    1. Add the “debug mode” for the Avia Layout Builder by add this code to your functions.php:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug() {
    	return "debug";
    }

    2. When editing the page, now you’ll see a text area appear under the layout builder. Copy the contents to a text editor (copy twice – once for a backup) and fix the HTML errors. Copy and pasted the fixed code back into the text area under the layout builder and save. That should fix it.

    in reply to: Mobile Menu Entrance Animation – Slide from Right #529157

    Figured this out by myself:
    Reset all the CSS transforms and animate (with CSS property transition) the right property. Pay attention to the initial value right: -100%;!

    html body#top #mobile-advanced {
        top: 0;
        left: auto;
        right: -100%;
        -moz-transform: none;
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
        transition: right 0.6s;
    }
    
    html body#top .show_mobile_menu #mobile-advanced {
        -moz-transform: none;
        -ms-transform: none;
        -webkit-transform: none;
        transform: none;
        right: 0;
    }
    in reply to: Mobile Menu Entrance Animation – Slide from Right #528685

    Thank you very much for your quick reply.

    That took care of the width issue.

    What about the other two questions? The “slide from right” animation and keeping the menu icon in the same place in both open and closed menu states?

Viewing 8 posts - 1 through 8 (of 8 total)