Forum Replies Created
-
AuthorPosts
-
Hi arthurhpaulino!
No, unfortunately this is not easily possible. You can display all magazine posts in a random order or you can stick with the current order. Adding just one random post would require a second query, additional html code, etc. and this customization is beyond the scope of our free support service. It can be done but I recommend to hire an experienced freelancer ( i.e. here http://studio.envato.com/ ) if necessary.
Cheers!
PeterHey samforan!
Unfortunately we’ve no experience with adobe typekit and there’s no tutorial or instructions. If you’ve one feel free to share it – maybe it will help some other users.
Best regards,
PeterHey roemer!
You can try this code: http://carlorizzante.com/development/back-link-with-wordpress-and-jquery/ and add it to a “Code” block element.
Best regards,
PeterHi forum30!
I think this issue might be caused by a plugin or some custom css code because nobody else reported it. Please revert/remove all custom changes (especially css code or child theme code) and deactivate all plugins except WooCommerce and bbpress. If this solves the issue activate the plugins one by one and re-apply your custom code step by step to find the culprit.
Regards,
PeterJuly 22, 2014 at 6:33 pm in reply to: Child functions.php Not Overriding Parent functions.php #294516Hey!
We’ll add a filter for the image sizes with the next update. You can use it like:
function my_image_size($sizes) { $sizes['entry_with_sidebar'] = array('width'=>710, 'height'=>360); // big images for blog and page entries return $sizes; } add_filter('ava_registered_thumbnail_sizes', 'my_image_size', 10, 1);I added it to your functions.php file manually but the next update will come with this filter out of the box.
Regards,
PeterHi!
Please read the documentation of magnific popup: http://dimsemenov.com/plugins/magnific-popup/ . You can’t easily open a modal box without some custom code. I did a quick test on my website though and if a paste following code into a “Code” element:
<script> (function($) { $(function () { $('.popup-modal').magnificPopup({ type: 'inline', preloader: false, focus: '#username', modal: true }); $(document).on('click', '.popup-modal-dismiss', function (e) { e.preventDefault(); $.magnificPopup.close(); }); }); })(jQuery); </script> <style> .white-popup-block { background: #FFF; padding: 20px 30px; text-align: left; max-width: 650px; margin: 40px auto; position: relative; } </style> <a class="popup-modal" href="#test-modal">Open modal</a> <div id="test-modal" class="mfp-hide white-popup-block"> <h1>Modal dialog</h1> <p>You won't be able to dismiss this by usual means (escape or click button), but you can close it programatically based on user choices or actions.</p> <p><a class="popup-modal-dismiss" href="#">Dismiss</a></p> </div>I can reproduce the demo content of the magnific popup website.
Cheers!
PeterHi xpoveda!
The problem is that the typekit code takes too long to load + initialize and the wf-loading class is added too late to hide the font and to avoid the flashing. You can try to use this code instead:
#top h1 { visibility: hidden; } .wf-active #top h1 { visibility: visible; }Regards,
PeterHi!
Ismaels code should work – please try to use a more specific selector like:
#top #wrap_all .header_bg { opacity: 0.35; filter: alpha(opacity=35); }and replace 35 with any value between 1 and 99.
Regards,
PeterHi!
I fixed it. I simply had to switch the long/lat values. The shortcode now is:
[av_google_map height='400px' zoom='16' saturation='' hue='' zoom_control='aviaTBzoom_control'] [av_gmap_location address='Aglantzias' city='Aglantzia' country='Cyprus' long='33.391600' lat='35.157087' tooltip_display='aviaTBaviaTBtooltip_display' marker='' imagesize='40'][/av_gmap_location] [/av_google_map]Regards,
PeterHey!
No, the theme contact form can’t post to an external php script. Our contact form sends an ajax request to wordpress and relies on the wp_ajax api to process the data.
Regards,
PeterHi!
1) Ja, mit CSS Code. Füge diesen zB in das Quick CSS Feld ein:
.template-page .entry-content-wrapper h2.portfolio-preview-title { text-align: right; }2) Ja, ebenfalls mit CSS Code:
.template-page .entry-content-wrapper h2.portfolio-preview-title { pointer-events: none; }3) Ja, ebenfalls mit CSS Code:
.template-page .entry-content-wrapper h2.portfolio-preview-title { display: none; }4) Nein, ein solches Overlay wird von Enfold nicht unterstützt. Man kann nur eine Galerie einfügen und die Bilder mit einer Lightbox verknüpfen.
Regards,
PeterHey jjrdguez!
In my opinion it’s up to the server administrator to block folder indexing/directory listings. You can do this with a htaccess rule – see http://www.htaccess-guide.com/disable-directory-listings/
Regards,
PeterHey VinzentE!
1) You can use the “Code Element” to insert the sign up forminto the a template.
2) I don’t understand what you mean with ““design and logic” that enfolds offers with bbpress”? Please elaborate.
Regards,
PeterJuly 21, 2014 at 6:03 pm in reply to: Where can I add html code so that I have a banner under the menu? #293942Hey!
You mean on the home/front page? Yes, this is possible:
function add_stuff_before_breadcrumbs() { if(is_home() || is_front_page()) return; echo '<div class="stretch_full container_wrap alternate_color light_bg_color title_container"><div class="container">'; echo 'Some html content'; echo '</div></div>'; } add_action('ava_after_main_container', 'add_stuff_before_breadcrumbs');Cheers!
PeterHi!
Yes, the new lightbox (magnific popup) does not show the alt text above the image like prettyphoto did. You need to add it to the title if you want to show it below the photo.
Cheers!
PeterHi!
The lightbox will only use the “large” thumbnail size by default. I’ll ask Kriesi to add a filter with the next update which enables the user to change the thumbnail size. For now you’ve two options:
1) Open up wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/generic-helper.class.php and replace:
$link = wp_get_attachment_image_src($post_id, 'large');with
$link = wp_get_attachment_image_src($post_id, 'full');or
2) Use the “Manually” link option and paste the image url into the url field.
[av_image src='http://www.wp-master.org/wp-content/uploads/2014/07/visuels_flous_8.jpg' attachment='3255' attachment_size='full' align='center' animation='no-animation' link='manually,http://www.wp-master.org/wp-content/uploads/2014/07/visuels_flous_8.jpg' target='' styling='' caption='' font_size='' appearance=''][/av_image]Best regards,
PeterHey databuzz!
You can try to use a css media query to re-size the images. You can insert the code into the quick css field or child theme style.css file. Use the code like:
@media only screen and (max-width: 989px) { #top .avia-slideshow li img { width: auto; max-height: 100px; } }and replace the max-height value with any custom, postive value and adjust the screen size (set to 989px in the demo code) if necessary. It determines which devices/screen sizes will be affected by the media query.
Cheers!
PeterHi!
I just noticed Kriesi deactivated the videos for Android devices too. I’m pretty sure they worked in the past (at least for Android devices) because I tested them when Kriesi released the video sliders.
Regards,
PeterHi!
Can you post a link to your website please which enables us to investigate the css code of the “next section” button?
Regards,
PeterHi!
Open up footer.php and insert your disclaimer code/text below this code
wp_nav_menu($args); echo "</nav>"; ?>I.e. like:
wp_nav_menu($args); echo "</nav>"; ?> <div class="custom_disclaimer">My disclaimer...</div>Maybe we need to re-position the disclaimer div with css but that’s no problem as long as you make sure there’s a custom class or id which enables us to select this div.
Regards,
PeterJuly 21, 2014 at 5:23 pm in reply to: Fullscreen slider and anchor #next-section with header transparent or not #293922Hi!
You can try to add the webkit class to exclude Chrome like:
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:landscape) { .avia-webkit.avia-ipad #top .scroll-down-link {bottom: 20px;} }Cheers!
PeterHey!
It works now. I just re-saved the page and theme options and set the “news” page as “blog page”.
Cheers!
PeterHi!
No, the code should work without any additional changes. Please create us an admin account and post a link to your website and I’ll check why the code doesn’t work.
Cheers!
PeterHey!
Nevermind – I think Kriesi forgot thr hentry class – that’s why google+ doesn’t find the authorship data. I’ll ask him to correct this with the next update.
Best regards,
PeterHey!
The schema.org markup is still there. If the google+ picture doesn’t appear something else is wrong (google+ authorship isn’t verified, etc.) but it’s not connected to this issue. Maybe try to set a a seo plugin like Yoast which supports google+ meta data too.
Cheers!
PeterJuly 20, 2014 at 3:10 pm in reply to: remove_filter('the_title', 'wptexturize'); do not work with share social button #293618Hi!
Maybe – tbh I don’t know if Kriesi released the 2.9.2 version on themeforest.net or maybe it’s a developer build only and Kriesi wants to wait some days until he releases the 2.9.2 version.
Best regards,
PeterHi!
I think there’s a syntax error in Josue’s code – please try this code instead:
function modify_share_title(){ return "Compartir esta entrada:"; } add_filter('avia_social_share_title', 'modify_share_title', 10, 2);Cheers!
PeterHey!
Maybe Enfold can’t regenerate the dynamic stylesheet. Please use a ftp client and connect to your server. Navigate to wp-content/uploads/dynamic_avia/ and set the folder permission to 777. Then delete all css files inside the dynamic_avia folder. Afterwards go to Enfold > Theme Options to regenerate the dynamic stylesheets (hit the green “Save all changes” button) for each language (you need to switch the language to save the settings).
Regards,
PeterJuly 20, 2014 at 12:06 pm in reply to: remove_filter('the_title', 'wptexturize'); do not work with share social button #293597Hey!
Enfold doesn’t convert “Bonjour c’est l’été” to “Bonjour c & r s q u o ;est l & r s q u o ; été& # 8 2 3 0 ;” by default. I think something else (custom code or a plugin) converts these characters. I did a quick test on my demo server (unmodified 2.9.2 version) and the share buttons work just fine with “Bonjour c’est l’été…”: http://test.inoplugs.com/bonjour-cest-lete/?lang=en
If you want to modify the title output search for this line in wp-content/themes/enfold/includes/helper-social-media.php
$replace['title'] = !isset($this->post_data['title']) ? get_the_title() : $this->post_data['title'];and modify replace get_the_title() with your title code.
Best regards,
PeterHey!
Did you expand the latest news widget options? You can select the categories from a select list. Use Ctrl + Left mouse to select multiple categories: http://www.clipular.com/c/5449446389186560.png?k=0wvd0WQn-_O976yAz3cGaL4oDDc
Regards,
Peter -
AuthorPosts
