Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #623332

    Hi everybody, i would like to ask 3 questions relate to my site that im building now.

    1- LOGO on homepage: When I click on the logo, it refreshes the homepage or brings me back to the home page if I’m on another page. Can I change this? ie the destination when I click it. If so, where can I do this?

    2- FOOTER It is written © Copyright – karlchabot.com | Commercial photographer – Enfold WordPress Theme by Kriesi … Is it possible to remove “Enfold WordPress Theme by Kriesi”?

    3- On Safari, after the new update of Enfold – Responsive Multi-Purpose Theme (yesterday for me) can’t see the new pics i add to my site…
    Anybody have the same problem ? is there a solution or have to wait for a new update

    Thank you in advance

    #623364

    Hey karlemagne!

    Regarding one, take a look here
    https://kriesi.at/support/topic/header-logo-url-change/

    Regarding two,
    You can just add [nolink] to the end of your copyright line under Theme Options -> Footer

    Regarding three, there is cache that is why you can not see it. You will need t empty the cache and it will work properly

    Best regards,
    Basilis

    #623914

    Thanks Basilis,

    Regarding 3, the cache that you talking about is it in wp or Enfold,(if so, i didnt found where it is) cause i already clear my Safari’s Cache…

    Thanks again

    #625244

    Hi,

    Sorry for the late reply. Images are showing up fine on my end using latest version of Safari, could you post a screenshot of what you are seeing on your end please?

    Regards,
    Rikard

    #625370

    Hi, here the screenshot links :
    (nota: i use the last version of both navigator)
    Safari : https://www.dropbox.com/s/w38gqkn6wguhdp8/Safari.png?dl=0
    Fierfox : https://www.dropbox.com/s/orultoflnb94fht/Fierfox.png?dl=0

    Another things…Regarding the answer of Basilis about the question # 1…
    The info about the link in the answer, i dont think its the good one anymore, cause i cant find the reference that Joshu give there ie line 441

    Here’s Basilis answer :
    Regarding one, take a look here
    https://kriesi.at/support/topic/header-logo-url-change/

    Thanks

    #625375

    Hi,

    I am sorry, please do the following

    add_filter('avf_logo_link', function() {
    	return "http://google.com";
    });
    
    

    let me know if that works properly

    Best regards,
    Basilis

    #625379

    Hi,

    Where exactly should i insert it ? some where there ?

    function avia_preload_screen()
    {
    $class = avia_get_option(‘preloader_transitions’) != “disabled” ? ‘av-transition-enabled’ : “”;
    $label = __(‘Loading’,’avia_framework’);
    $logo = avia_get_option(‘preloader_logo’);
    if(is_numeric($logo)){ $logo = wp_get_attachment_image_src($logo, ‘full’); $logo = $logo[0]; }

    if($logo)
    {
    $class .= ” av-transition-with-logo”;
    $logo = “{$label}“;
    }

    $output = “”;
    $output .= “<div class=’av-siteloader-wrap {$class}’>”;
    $output .= “<div class=’av-siteloader-inner’>”;
    $output .= “<div class=’av-siteloader-cell’>”;
    $output .= $logo;
    $output .= “<div class=’av-siteloader’><div class=’av-siteloader-extra’></div>”;
    $output .= “</div>”;
    $output .= “</div>”;
    $output .= “</div>”;
    $output .= “</div>”;

    return $output;

    #625381

    Sorry, somewhere here :

    /* filter menu item urls */
    if(!function_exists(‘avia_menu_item_filter’))
    {
    add_filter( ‘avf_menu_items’, ‘avia_menu_item_filter’, 10 );

    function avia_menu_item_filter ( $item )
    {

    if(isset( $item->url ) && strpos($item->url, ‘#DOMAIN’) === 0)
    {
    $item->url = str_replace(“#DOMAIN”, get_site_url(), $item->url);
    }

    return $item;
    }
    }

    #627016

    Hi,

    insert the code into your functions.php, preferably into your child theme.

    Best regards,
    Andy

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