Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #899205

    Hello,

    I built in an akkordeon on my webpage (www.klangei.jetzt) and recognized, that, as soon as I open a topic in the akkordeon, the url changes to the domain plus „#toggle-id-1“ (for example). Is there a way to change the url to a certain name (such as „www.klangei.jetzt/name of the toggle“?
    I couldnt find it by now…

    My second question refers to the logo. When I open the site on a mobile the logo and the menu-placeholder (three stripes) are overlapping.
    I couldnt find the place, where I can put a smaller logo for mobile devices. Is there a way to handle this?

    Thanks in advance!
    Cheers,
    Wolfgang

    #900576

    Hey woelf68,

    Please, provide us your WordPress credentials?

    Best regards,
    John Torvik

    #900670

    Hi, John,

    please see private content for credentials.

    Thanks, Wolfgang

    #902482

    Hi,

    This is possible but you have to modify the js > shortcodes.js file. Look for this code around line 2770.

    location.replace(thisheading.data('fake-id'));
    

    Replace it with:

    var name = thisheading.next('.toggle_wrap ').find('.toggle-name').data('name');
    					location.replace(name);
    

    In every toggle content editor, create a div with the name data. Example.

    
    <div class="toggle-name" data-name="#name1"></div>
    

    Best regards,
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.