Forum Replies Created
-
AuthorPosts
-
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,
PeterHi 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!
PeterDecember 30, 2013 at 6:02 pm in reply to: Can't place ads on Ajax Portfolio preview text section #203772Hi 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!
PeterHey 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!
PeterHi!
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!
PeterHey!
Please try following code
#top #wrap_all .av-special-heading.classic-quote { color: #ff0000; }
Cheers!
PeterHey!
Vielen Dank :)
Best regards,
PeterHey!
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,
PeterHi!
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,
PeterHi!
I set my reply to “public” – you should be able to read it now?
Cheers!
PeterThis reply has been marked as private.Hi!
Can you please check the password? It doesn’t seem to work for me.
Best regards,
PeterHey!
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,
PeterHi 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,
PeterHi!
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,
PeterHey!
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,
PeterHi 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,
PeterHi!
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!
PeterDecember 30, 2013 at 12:33 pm in reply to: Issues with LayerSlider and WordPress Multisite-Installation #203673Hi 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,
PeterHi!
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!
PeterHey!
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,
PeterDecember 30, 2013 at 12:17 pm in reply to: Enfold and Online Product Documentation WordPress Plugin #203667Hey 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,
PeterHey!
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!
PeterHi 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,
PeterHi!
Ok, I’ll mark this for the other support staff members – hopefully they can reproduce it.
Cheers!
PeterHi!
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,
PeterHi griffiba!
Yes, insert following code into the quick css field
#header_meta { box-shadow: none; }
Cheers!
PeterHey 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,
PeterHey!
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 -
AuthorPosts