-
AuthorPosts
-
April 27, 2016 at 8:23 pm #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 updateThank you in advance
April 27, 2016 at 10:05 pm #623364Hey 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 -> FooterRegarding 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,
BasilisApril 28, 2016 at 5:53 pm #623914Thanks 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
May 1, 2016 at 7:21 am #625244Hi,
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,
RikardMay 1, 2016 at 7:57 pm #625370Hi, 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=0Another 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 441Here’s Basilis answer :
Regarding one, take a look here
https://kriesi.at/support/topic/header-logo-url-change/Thanks
May 1, 2016 at 8:41 pm #625375Hi,
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,
BasilisMay 1, 2016 at 8:55 pm #625379Hi,
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 = ““;
}$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;
May 1, 2016 at 8:59 pm #625381Sorry, 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;
}
}May 4, 2016 at 9:59 am #627016Hi,
insert the code into your functions.php, preferably into your child theme.
Best regards,
Andy -
AuthorPosts
- You must be logged in to reply to this topic.