Forum Replies Created

Viewing 19 posts - 31 through 49 (of 49 total)
  • Author
    Posts
  • in reply to: How to extend theme support after purchase on Envato #572370

    Hi Andy,

    Got it. I’ll head over there.

    Thanks,
    Barnez

    OK. In Firebug I find there are LayerSlider errors for each image:

    It seems like the URL of the image or background image “xxx.jpg” is pointing to a wrong location and it cannot be loaded. Please check the URLs of all your images used in the slider.

    This is weird as in the Dashboard >> LayerSlider the preview of each slider is rendering fine with the images.

    I’ve re-saved the links again, and will consider re-uploading the images again. As I said, it’s definitely not a plugin conflict as the test site is working fine.

    Hi Rikard,

    You can see the issue now. I’ve tried deleting the browser cache on Firefox, and tried viewing with Chrome too. The same issue is there.
    Ideas?

    Hi Rikard,

    Thanks for taking a look. Yes, the images are still loading fine for me also right now, but this has happened three times now. On each occasion I have tried clearing the Super Cache cache and the browser cache, with no improvement. After the second time I deleted and re-uploaded the Enfold theme files, but then this happened again for a third time. If it’s OK, I will keep this post open and get back when the issue happens again so you or one of your colleagues can see the problem.

    Thanks,
    Barnez

    Hi,

    Thanks for picking back up on this Ismael. As it happens the SEO plugin developer.has created a filter to resolve the issue, but it’s great to know that Enfold also has this covered. Keep up the great work, and excellent support!

    Regards,
    Barnez

    Hi Basillis,

    Thanks for getting back so quickly and for considering this for a future update. I’ve been with Yoast SEO for years, but their recent updates have been unpredictable over the last 18 months and hence I’m looking to change.

    Cheers,
    Barnez

    OK,

    I’ve just tried the Facebook debugger to test the site sharing for issues, and it ‘is’ picking up the open graph data correctly, but the Twitter share is not:
    Home http://mysite.com/

    Hi Yigiy,

    You are a legend :) That is just what I was looking for!
    I stripped out the existing code from functions.php and style.css, added the linked to code to the functions.php with the path to the small mobile logo, and bingo.

    Thank you.

    *Resolved*

    in reply to: Imported fontella icons but not showing correctly on site #485758

    Hi Josue,

    That’s it! Resolved ;)

    Many thanks for making the adjustments to the functions.php file.

    Best regards

    in reply to: Imported fontella icons but not showing correctly on site #485096

    Hi Josue,

    Many thanks for the offer!
    Here are the details.

    Cheers

    • This reply was modified 9 years, 5 months ago by Barnez1.

    Hi Andy,

    Many thanks for looking into this.

    For point 1, I checked the link you sent and looked into the helper-social-media.php, and may have to draft in some help to customise as there is no PayPal tooltip icon there to adjust.
    For point 2, that is brilliant.

    Cheers.

    Almost complete.

    I used a different imported fontello PayPal icon code (ue800) and now I have the PayPal icon showing in the header socket. There are two minor issues to complete:

    1. The ALT text on hover is still showing as Icon_name rather than PayPal. I’ve tried changing this in the functions code above (icon_name => PayPal), but this hasn’t helped.
    2. The hover over is not behaving as per the other two icons in the socket. This is what I am using in the style.css:

    
    #top .social_bookmarks_twitter:hover  a {color:#fff; background-color:#575757 !important; }
    #top .social_bookmarks_mail:hover  a {color:#fff; background-color:#575757 !important; }
    #top .social_bookmarks_paypal:hover  a {color:#fff; background-color:#575757 !important; }
    

    Any ideas?

    Andy,

    All solved and resolved with that css rule.

    Many thanks for your help!

    Hi Elliot,

    Many thanks for getting back on this, and apologies for any confusion caused. I’m still getting to grips with this theme (one week in) and since I made this post I have discovered that although I used html code to create a list of share social medial icons in a widget in my previous theme, there is actually a shortcode in Enfold to do this (brilliant btw).

    I have now placed a block of share social media icons n the footer using the shortcode, and styled the hover over color. The only issue I am having is that when I include a title for the widget area (SHARE) on hover a share message appears over each icon (e.g. “Share on Facebook”). However, as the widget is in a 1/4 footer area near the top of the footer, the share bubble and text doesn’t show fully. Can this pop-out window (data-avia-related-tooltip ?) be hidden with css, as with the existing footer widget title this extra information is not really needed?

    Note that I have other tooltips on the site which need to remain active

    Cheers,
    Barnez

    • This reply was modified 9 years, 5 months ago by Barnez1.

    Hi Ismael,

    Many thanks for your reply. I was using a slightly different code for the PayPal icon which I found in a previous enfold support post.

    When I change the code to that suggested in the linked documentation page and the icon code to the code for the imported fontello PayPal icon (ue911 – found from the icon shortcode) no icon appears (although the link is there), and the alt text is Icon_name. The new PayPal option is listed and selected in Social Profiles >> Social Icon. Here is the code I have inserted into functions.php:

    
    // Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    	$icons['icon_name']	 = array( 'font' =>'fontello', 'icon' => 'ue911');
    	return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    	$icons['Icon Label'] = 'icon_name';
    	return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    
    • This reply was modified 9 years, 5 months ago by Barnez1. Reason: $icons['PayPal'] = 'icon_name'; reverted back to the original $icons['Icon Label'] = 'icon_name';

    Hi Ismael,

    This theme is fantastic, and I’m really pleased with my decision to choose it over the two others I was considering!

    Your suggested css was excellent. The only thing I needed to do was to increase the margin left to -90 to allow the tooltip windows to show on a narrow mobile screen.

    Many thanks for your help!

    I’ve found this in js>>avia.js on line 1757-1772

    
    	$.AviaTooltip  =  function(options)
    	{
    	   var defaults = {
                delay: 1500,                //delay in ms until the tooltip appears
                delayOut: 300,             	//delay in ms when instant showing should stop
                delayHide: 0,             	//delay hiding of tooltip in ms
                "class": "avia-tooltip",   	//tooltip classname for css styling and alignment
                scope: "body",             	//area the tooltip should be applied to
                data:  "avia-tooltip",     	//data attribute that contains the tooltip text
                attach:"body",          	//either attach the tooltip to the "mouse" or to the "element" // todo: implement mouse, make sure that it doesnt overlap with screen borders
                event: 'mouseenter',       	//mousenter and leave or click and leave
                position:'top',             //top or bottom
                extraClass:'avia-tooltip-class', //extra class that is defined by a tooltip element data attribute
                permanent: false 			// always display the tooltip?
                
            }
    

    Is there any possibility for a position:”left or float:’left’?

    Hi,

    I’ve been working on this issue over the weekend.

    Regarding the PayPal link, I’ve managed to link the uploaded icon to the social profile and now have the link in the header socket (I followed the guidance here). The only issue now is that although the link and alt text are there, the icon is not visible. Almost there…..

    Regarding the tumblr icon in the footer share section I have located one and uploaded it. The only issue now is again that the alt text is showing but not the icon, Here is the code

    
    <li class="social_bookmarks_twitter"><a target="_blank" href="http://www.tumblr.com/share" aria-hidden="true" av_font_icon icon='ue8fb' data-av_iconfont="entypo-fontello" title="Tumblr"><span class="avia_hidden_link_text">Tumblr</span></a></li>
    

    Any ideas why neither of these uploaded fontello icons are visible?

    Hi Elliot,

    Many thanks for getting back.

    1. See private content below for the PayPal link

    2. This was my first attempt. I can create a text widget in the footer without any problems, but I can;t find any list of the shortcodes for the icon. Where might this be (as it’s not in the Appearance >> Widget area). Also, how would I set a link inside a shortcode? Could you please give an example?

    Cheers,
    Barnez

    ____________
    EDITED:

    I’ve found some useful info on this thread: https://kriesi.at/support/topic/i-want-to-add-social-media-in-widget/, and now have the Facebook, Twitter and Google+ share icons installed and working. Would it be possible to add the Tumblr icon to the list:

    
    <ul class="noLightbox social_bookmarks icon_count_6"><li class="social_bookmarks_facebook av-social-link-facebook social_icon_1"><a target="_blank" href="http://www.facebook.com/sharer/sharer.php?u=www.proofscience.com&t=Scientific proofreading service available @ http://www.proofscience.com for researchers, students and all your document editing requirements." aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Facebook"><span class="avia_hidden_link_text">Facebook</span></a></li><li class="social_bookmarks_twitter av-social-link-twitter social_icon_2"><a target="_blank" href="http://www.facebook.com/sharer/sharer.php?u=www.proofscience.com&t=Scientific proofreading service available @ http://www.proofscience.com for researchers, students and all your document editing requirements." aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Twitter"><span class="avia_hidden_link_text">Twitter</span></a></li><li class="social_bookmarks_gplus av-social-link-gplus social_icon_5"><a href="https://plus.google.com/share?url=www.proofscience.com" onclick="javascript:window.open(this.href,
      '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Gplus"><span class="avia_hidden_link_text">Gplus</span></a></li></ul>
    
    • This reply was modified 9 years, 5 months ago by Barnez1. Reason: Found part of solution to adding social media shares to footer
Viewing 19 posts - 31 through 49 (of 49 total)