Forum Replies Created

Viewing 30 posts - 5,971 through 6,000 (of 9,352 total)
  • Author
    Posts
  • in reply to: WishList Member & Avia Layout Builder for Pages #203852

    Hey!

    We’re not familiar with the Wishlist member code and your best bet is to contact the plugin author. I recommend to use the “avf_template_builder_content” hook in template-builder.php to manipulate the content if the page is protected by Wishlist. Basically you can use the filter like

    
    add_filter('avf_template_builder_content', 'avia_wishlist_content_check', 10, 1);
    function avia_wishlist_content_check($content){
    	$id = get_the_ID();
    	$user_can_access_page = my_wishlist_check($id);
    	if(!$user_can_access_page)
    	{
    		$content = get_wishlist_login_form();
    	}
    
    return $content;
    }
    

    and replace my_wishlist_check() pseudo code with the wishlist function which checks if the user can view the page or not and the get_wishlist_login_form() pseudo code/function with the function which outputs the login form code. Note that the “avf_template_builder_content” filter requires enfold 2.4.4+ – older theme versions just use the the_content filter but it affects all posts/pages and thus I decided that we’ll add a second filter for template builder pages.

    Regards,
    Peter

    in reply to: Portfolio Permanent link #203794

    Hi anderandreani!

    No, this is impossible. The single portfolio entry slug ALWAYS used (since Enfold v1.0) a static slug (i.e. /portfolio-item/ ) and it was (and still is) not possible to use a category based slug instead. You can change the “portfolio-item” text on the Settings > Permalinks page (change the text in the option field and hit the “Save” button) but you can’t use the category (or any other dynamic slug rule) for the portfolio entries.

    Cheers!
    Peter

    in reply to: Can't place ads on Ajax Portfolio preview text section #203772

    Hi Adame!

    Afaik you can’t use the adsense code with the portfolio preview feature because Google doesn’t allow to embed or generate the adsense code with ajax (see: http://productforums.google.com/forum/#!topic/adsense/oy3bC3-qJzw or http://stackoverflow.com/questions/435391/refresh-a-div-that-has-a-google-ad-inside-it#441425 ). The portfolio preview feature uses ajax to load the content and thus your content won’t show any google adsense ads. From a technical point of view it might be possible to “activate” the ads somehow but I’m not sure how and I wouldn’t recommend because you’re risking a permanent ban.

    Cheers!
    Peter

    in reply to: Random Post Slider Content Element #203770

    Hey jmaguirrei!

    Insert following code at the very bottom of enfold/functions.php – it will change the orderby query parameter to “random” if the post slider is used on the home/front page.

    
    add_filter('avia_post_slide_query','avia_order_by_random', 10, 2);
    function avia_order_by_random($query, $params)
    {
    if(is_home() || is_front_page()) $query['orderby'] = 'rand';
    return $query;
    }
    

    Cheers!
    Peter

    in reply to: A few issues I'd appreciate some help with? #203767

    Hi!

    The feed issue is not theme/WP related but the “Hide My WP” plugin breaks the feed. I deactivated it and the feed started to work…

    Cheers!
    Peter

    in reply to: Zitat Schriftfarbe #203765

    Hey!

    Please try following code

    
    #top #wrap_all .av-special-heading.classic-quote {
    color: #ff0000;
    }
    

    Cheers!
    Peter

    in reply to: Seltsamer Fehler #203750

    Hey!

    Vielen Dank :)

    Best regards,
    Peter

    in reply to: error edit.php on line 1014 #203749

    Hey!

    You can try to update the layerslider plugin folder only (upload and overwrite all files from the /wp-content/themes/enfold/config-layerslider/LayerSlider/ folder). However make a backup of the theme files first.

    Best regards,
    Peter

    in reply to: make ads responsive #203746

    Hi!

    The content of the ads (iframe which shows html code from a different source) is not responsive. The width is set to a fixed width of 300px and doesn’t use % values for a fluid layout. You must contact the content/ads provider – maybe they can send you some code for fluid/responsive layouts. We can’t help you with theme css code because our theme css code doesn’t affect the third party source code of the iframe/ad banner.

    Regards,
    Peter

    in reply to: Grid Blog Layout Not Working. #203708

    Hi!

    I set my reply to “public” – you should be able to read it now?

    Cheers!
    Peter

    in reply to: Grid Blog Layout Not Working. #203706
    This reply has been marked as private.
    in reply to: Grid Blog Layout Not Working. #203695

    Hi!

    Can you please check the password? It doesn’t seem to work for me.

    Best regards,
    Peter

    in reply to: Fehlender "Pfeil nach oben" auf "to top"-button #203694

    Hey!

    Yes, it’s ok for me. However note that I’m the only member of the support staff who speaks German and the response time may increase (i.e. if I don’t work one day you need to wait more than 24h for an answer…).

    Regards,
    Peter

    in reply to: Pages crashing after changing ENFOLD settings #203691

    Hi karbonato!

    Please update your theme to the latest version (2.4.4). Then go to Settings > Permalinks and change the portfolio slug rules if necessary and hit the “Save” button. Does this procedure fix the issue?

    Regards,
    Peter

    in reply to: Fehlender "Pfeil nach oben" auf "to top"-button #203689

    Hi!

    Great, you probably just need to update the child theme footer.php with this line

    
    <a href='#top' title='<?php _e('Scroll to top','avia_framework'); ?>' id='scroll-top-link' <?php echo av_icon_string( 'scrolltop' ); ?>></a>
    

    Best regards,
    Peter

    in reply to: Single Blog View ignores the Page settings #203687

    Hey!

    If you want to remove the link add following code to the bottom of functions.php

    
    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
    if (is_single()) $args['link'] = false;
    return $args;
    }
    

    2) You can try this plugin: http://wordpress.org/plugins/simple-share-buttons-adder/
    If the plugin doesn’t use the right content for the facebook share data I recommend to install http://wordpress.org/plugins/wordpress-seo/ and then you can use the “Social” tab/options: http://www.clipular.com/c/5678826713513984.png?k=2EpKGdnQl0mtbk_vvn_O5O2cfYY to specify some content for the social sharing services (description, image for facebook and google+, etc.)

    Best regards,
    Peter

    in reply to: Grid Blog Layout Not Working. #203685

    Hi Liam!

    Please create us an admin account and post the login credentials and a link to your blog page as private reply. We’ll look into it.

    Best regards,
    Peter

    in reply to: Fehlender "Pfeil nach oben" auf "to top"-button #203676

    Hi!

    Ich glaube das “scrolltotop” icon hat den falschen Icon Code. Bitte versuche die enfold/functions.php Datei per ftp zu aktualisieren und mit der neuen Datei der v2.4.4 Theme Version zu überschreiben.

    Cheers!
    Peter

    in reply to: Issues with LayerSlider and WordPress Multisite-Installation #203673

    Hi w3wision!

    Afaik the new LayerSlider plugin update (version 5.0) takes care of the issue. We’ll release a theme update with the new slider version but we first need to test all theme features/options, etc. with the new 5.0 version and I can’t give you an ETA yet. You can try to copy the Layerslider plugin folder from /wp-content/themes/enfold/config-layerslider/LayerSlider to the plugins folder and then activate the plugin for the entire network. I’m not sure if LayerSlider 4.x already supports the network activation but it’s worth a try. LayerSlider 5 should definitely support it (according to the plugin author).

    Best regards,
    Peter

    in reply to: Single Blog View ignores the Page settings #203671

    Hi!

    Insert following code into the quick css field

    
    .blog-categories.minor-meta, .blog-author.minor-meta, .text-sep.text-sep-cat, .text-sep.text-sep-date{
    display: none !important;
    }
    

    Cheers!
    Peter

    in reply to: Buttons in Portfolio Optik #203670

    Hey!

    Versuche einmal folgenden Code in das Quick CSS Feld einzufügen

    
    .grid-entry .inner-entry {
    box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.2);
    }
    

    Regards,
    Peter

    in reply to: Enfold and Online Product Documentation WordPress Plugin #203667

    Hey vasilybodnarchuk!

    Unfortunately we’re not familiar with the plugin code and we can’t solve the third party plugin conflict. Please contact the plugin author and ask him to look into it. We also can’t promise that all shortcodes of the theme framework play nice together with third party plugin content.

    Best regards,
    Peter

    in reply to: portfolio list view #203666

    Hey!

    You can use the page id class to deactivate the hover effect on a specific page. Use following css code instead of Ismael’s code

    
    .page-id-755 .grid-image.avia-hover-fx {
    display: none;
    }
    

    and replace 755 with the id of the portfolio page where you want to hide the images.

    Cheers!
    Peter

    in reply to: Problems after udating WP, and Enfold theme #203650

    Hi freeethinka!

    Maybe a theme file is corrupt. Please try to re-install the theme with ftp: https://vimeo.com/channels/aviathemes/67209750 and overwrite the old files.

    Best regards,
    Peter

    in reply to: Page alignment #203648

    Hi!

    Ok, I’ll mark this for the other support staff members – hopefully they can reproduce it.

    Cheers!
    Peter

    in reply to: Single Blog View ignores the Page settings #203647

    Hi!

    The single posts do not support the “Blank” page template because they do not support the template/layout builder. You can only use the Header Settings and “Footer Settings” to hide the title bar and footer section. A layout like here: http://www.cindigofilm.de/?page_id=2387 is not possible with single posts. Actually the “Blank page” layout was never intended to be used that way but it’s just a tool to create a “coming soon” page like demonstrated here: http://kriesi.at/themes/enfold/pages/blank/ or here: http://kriesi.at/themes/enfold/pages/blank/maintenance-mode/ or here: http://kriesi.at/themes/enfold/pages/blank/coming-soon/

    Best regards,
    Peter

    in reply to: Faint gray line under secondary menu #203643

    Hi griffiba!

    Yes, insert following code into the quick css field

    
    #header_meta {
    box-shadow: none;
    }
    

    Cheers!
    Peter

    in reply to: Page alignment #203642

    Hey louie!

    I couldn’t reproduce the issue on my PC (tested with IETester and IE11 developer tools). Please try to view your website on another PC and deactivate all browser extension (and the compatibility mode if necessary).

    Regards,
    Peter

    in reply to: Enfold Feature Requests #203634

    Hi!


    @mgerenser
    – we’ll improve the Gravity Forms integration with the next update.

    Regards,
    Peter

    in reply to: Same size boxes #203633

    Hey!

    It seems like the image is wrapped into a b tag. Try following code instead

    
    <p><a href="http://www.cambridgeespana.com/wp-content/uploads/2013/04/About_BlueSq_pale.jpg" class="alignleft"><img class="alignnone size-full wp-image-2817" alt="About_BlueSq_pale" src="http://www.cambridgeespana.com/wp-content/uploads/2013/04/About_BlueSq_pale.jpg" width="60" height="60"></a> <strong>Preparation</strong> is key to every successful outcome; given our first-hand experience and understanding of what acquirers and investors expect, we are well versed at preparing management teams for an impending transaction or inflection point.</p>
    

    Cheers!
    Peter

Viewing 30 posts - 5,971 through 6,000 (of 9,352 total)