Forum Replies Created
-
AuthorPosts
-
November 14, 2014 at 2:31 am in reply to: Header Changes color when we browser width is narrowed. #351071
Hi!
Please use this to adjust the menu padding and font size on smaller screens:
@media only screen and (max-width: 989px) and (min-width: 768px) { .responsive .main_menu ul:first-child > li > a { padding: 0 8px; font-size: 17px !important; } }Cheers!
IsmaelHey!
I’m sorry but we won’t be able to access the root directory of your site because it is forbidden. Please add the font file on mediafire or dropbox. Anyway, the yelp icon from Font Awesome works fine and I think I see the problem now. Please replace the code with this:
add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); function avia_add_custom_icon($icons) { $icons['yelp'] = array( 'font' =>'fontello', 'icon' => 'ue800'); return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1); function avia_add_custom_social_icon($icons) { $icons['Yelp'] = 'yelp'; return $icons; }Make sure that you add the code below line 16:
if(isset($avia_config['use_child_theme_functions_only'])) return;Cheers!
IsmaelHey!
Thank you for the update.
I’m sorry but that is not possible without major customization on the theme. Please hire a freelance developer to re-configure the header scripts. For further modifications, please visit Envato Studio or Werkpress.
Cheers!
IsmaelNovember 14, 2014 at 2:19 am in reply to: Full-Width Masonry: change size each thumbnail and size each lightbox #351063Hey!
You can edit the portfolio item then look for Overwrite Portfolio Link setting. Set it to define custom link. Add the url of the image or video in the custom field to open it on lightbox.
Cheers!
IsmaelNovember 14, 2014 at 2:17 am in reply to: Translation with mo/po file not working with Child Theme #351062Hey!
Thank you for the info. I already reported this issue to Kriesi so please wait for his response. I think you’re probably in the right direction with po edit. Make sure to create a backup of the lang folder in case you update the plugin and the theme.
Regards,
IsmaelHi!
Please add this:
.gfield_checkbox li input { float: left; }Best regards,
IsmaelHi!
Yes, you should probably forget the sidebar if you’re planning to create a single page navigation. Or add the ID using a text block. Create a text block then add this:
<div id="custom-id-here"></div>Best regards,
IsmaelHi!
Thank you for the info.
All data-av_icon attribute is missing, that is why the icons for mobile and scroll to top arrow are missing. Did you add any modifications regarding the icons? How did you transfer the website? We always recommend this plugin when transferring the website with the Enfold theme: http://wordpress.org/plugins/wp-migrate-db/
Refer to this link for more info on how to properly migrate your enfold website from production to development vice versa:
http://kriesi.at/documentation/enfold/move-from-a-local-installation-to-a-live-server/
https://code.tutsplus.com/tutorials/migrating-your-wordpress-database-wp-migrate-db-production-to-development–wp-32684Cheers!
IsmaelHi!
I’m sorry but you’re using an old version of the theme, 3.0.1. Please download the latest version 3.0.2 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/
The header markup is a bit different from the default theme structure. Did you modify header.php? How did you add the h3 tag on the logo? It should be enclosed in a strong tag by default.
Best regards,
IsmaelHi!
Thank you for the info. You can replace the code with this:
/** * Change In Stock / Out of Stock Text */ add_filter( 'woocommerce_get_availability', 'wcs_custom_get_availability', 1, 2); function wcs_custom_get_availability( $availability, $_product ) { global $product; // Change In Stock Text if ( $_product->is_in_stock() ) { $availability['availability'] = $product->get_stock_quantity() . __(' plekken beschikbaar', 'woocommerce'); } // Change Out of Stock Text if ( ! $_product->is_in_stock() ) { $availability['availability'] = __('VOL! Sorry...', 'woocommerce'); } return $availability; }Best regards,
IsmaelHey!
Please add this on functions.php to apply the link of the team member social icon to the team image:
function avf_member_social_link() { ?> <script> (function($){ $(window).load(function() { $( ".avia-team-member" ).each(function( index ) { var teamlink = $(this).find(".team-social a").attr('href'), teamimage = $(this).find(".avia_image_team"), teamsoc = $(this).find(".team-social") $(teamimage).wrap($('<a>',{ href: teamlink })); $(teamsoc).click(function() { window.location.href = teamlink; }); }); }); })(jQuery); </script> <?php }Add this on Quick CSS:
.team-social { cursor: pointer; }You can remove this part of the code:
$(teamimage).wrap($('<a>',{ href: teamlink }));Best regards,
IsmaelHi!
Thank you for the screenshot.
You need to install the bbPress plugin for that. Insert the (bbPress) Login Widget.
Cheers!
IsmaelHey!
Thank you for the info.
The layer slider automatically adds top margins on the background images. Please try to use the Fullwidth Slider instead of the layer slider since you’re not using any special effects or transitions on the slider. Set the Slideshow Image and Video Size to No Scaling.
Cheers!
IsmaelHey djshortkut!
Thank you for using Enfold.
Replace the #top id with the .page-id-7912 class.
.page-id-7912 div .no_margin { margin-left: -2px; margin-top: 0; }Best regards,
IsmaelHey!
Thank you for the update.
I’m sorry but this particular request is beyond the scope of support. You can edit the config-templatebuilder > avia-shortcodes > portfolio.php file to create different links, one to the custom link and the other to the actual portfolio item. Please hire a freelance developer to add the feature for you. Or visit Envato Studio or Werkpress for further customization.
Best regards,
IsmaelHi!
Thank you for the update. I’m sorry but you didn’t answer my question. My question is, did you add any kind of custom code like the one I posted above on functions.php? That’s the code that is causing the issue. You can replace the code with this:
add_filter('avf_title_args', 'avf_title_args_url', 10, 2); function avf_title_args_url($args,$id) { $args['title'] = get_the_title($id); $args['link'] = get_the_permalink($id); $args['heading'] = 'h1'; return $args; }Best regards,
IsmaelHi!
Thank you for using Enfold.
You can add this on functions.php if you want to add the page title automatically for pages created with the advance layout builder:
add_filter('avf_template_builder_content', 'avf_template_builder_content_title', 10, 1); function avf_template_builder_content_title($content = "") { $title = avia_title(); return $title . $content; }There’s actually an existing previous / next arrow on blog post pages. You can find it on both side edges of the single post page.
Best regards,
IsmaelNovember 12, 2014 at 9:38 pm in reply to: Tab shortcode z-index issue with popup/tooltip plugins and media #350358Hey cryscryb!
Thank you for using Enfold.
I’m sorry but we don’t provide support for any third party plugins but you can use the theme’s default tool tip system. Tool tip should be rendered outside the main container to prevent overflow properties from cutting off the tool tip area. Add this on functions.php:
function avf_text_tooltip() { ?> <script> (function($){ $(window).load(function() { //creates text icon tooltip new $.AviaTooltip({'class': "avia-tooltip avia-text-tooltip", data: "avia-text-tooltip", delay:0, scope: "body"}); }); })(jQuery); </script> <?php } add_filter('wp_footer', 'avf_text_tooltip', 10);Add this on the tab content, make sure you’re on text / html editor mode:
<a class="avia-text-tooltip" href="#" data-avia-text-tooltip="TOOL TIP HERE">Tooltip</a>Everything with the class avia-text-tooltip and the attribute data-avia-text-tooltip will have a tool tip. You can add the tip content inside the data-avia-text-tooltip attribute.
Cheers!
IsmaelHi!
@Aefiel: Have you tried using the Contact Form 7 plugin? If it still doesn’t work with the plugin, please contact your hosting provider for any email settings limitation or configuration.Regards,
IsmaelHey!
It should work but you input the url incorrectly. It should be:
http://andrzejkaralow.pl/en/#eventsRight now, it is:
http://andrzejkaralow.pl/en#eventsThe slash is missing.
Best regards,
IsmaelHey!
Thank you for using Enfold.
You have to custom code this or use the column layout shortcodes to separate the images. Image width and height might change on different screen sizes so you have to use css media queries to fix that.
Regards,
IsmaelHey!
We can’t see the screenshot because access is forbidden. Please try to use imgur, dropbox, clipular etc. Also, add a screenshot on where you want the search form to go.
Regards,
IsmaelHey awp23!
Thank you for using Enfold.
Please refer to the following link. The code there will allow you to move the sidebar to the right of the content: https://kriesi.at/support/topic/single-product-page-sidebar-not-showing-up/#post-331433
Best regards,
IsmaelNovember 12, 2014 at 8:45 pm in reply to: Changing the blog style – "Blog Single Author Small" with category picture #350313Hey!
Thank you for the update.
I’m sorry but this will require a modification that is beyond the scope of support. You can edit includes > loop-index.php. Find this code:
echo "<div class='blog-meta'>";Please refer to this link for more info on how to fetch the category image: http://codex.wordpress.org/Function_Reference/get_the_category#Show_Category_Images
Cheers!
IsmaelNovember 12, 2014 at 8:41 pm in reply to: Image w/ Hot Spots – Trigger links instead of tooltip #350312Hi cinetheque!
Thank you for using Enfold.
Unfortunately, this is not possible yet. Please visit Envato Studio or Werkpress for further customization. You can also vote or request the feature on our Feature Requests page.
Regards,
IsmaelHi!
Thank you for the info and sorry for the delay.
1.) Use this to decrease the container title padding:
#top .title_container .container { padding-top: 0; padding-bottom: 0; min-height: 20px; }2.) I think the suggest code above should remove the slider’s padding. A screenshot will help.
3. I don’t see any 2/3 column on the page.
4. Where is the submit button?
5. Use this to reduce the footer padding:
#footer { padding: 0; z-index: 1; }6. Please provide a screenshot.
Additionally, for future reference we kindly ask you to refrain from bumping the thread. Since we answer questions from oldest to newest, bumping makes it appear new and it will probably take us longer to respond on your inquiry. Replies in the forum can take up to 24 hours during the week, but oftentimes we are able to get to questions much quicker than that. We request that our users wait patiently while we work our way through the forum as we can assure you that all questions will be addressed as soon as possible.
Also, we can only provide support for basic aesthetic / styling modifications and theme related issues. Any modifications or additional features should be consulted with a freelance developer. For further modifications, please visit Envato Studio or Werkpress.
Cheers!
IsmaelHey!
I’m not sure if you’re following me correctly. Let’s start again. Where is your portfolio items located? The Photo & Video Gallery is a page, not a single portfolio page. Please remove the custom link under Overwrite Portfolio Link settings. Go to your portfolio page then click the portfolio item. You should end up on the actual single portfolio page where you can see the actual portfolio item content.
Regards,
IsmaelHi islandjoe1!
Thank you for using Enfold.
I’m sorry but we don’t provide support for third party plugin extensions as stated on our support policy and seeing that you’re using tons of other plugins, the error may have something to do with that as well. Try to deactivate all other plugins except for WooCommerce and the said plugin then test it again. Hire a freelance developer or contact the plugin author / support for further info.
Regards,
IsmaelHi!
Add the google font filter below line 16 of the parent theme’s functions.php file. It should work. Make sure that you set Open Sans Subset on General Styling > Font > Heading font. You can also set this for the Main Menu Links’ Font Family on Enfold > Advanced Styling Panel. Please create a log of these changes in case you update the theme.
Cheers!
IsmaelHi Biggy!
Thank you for using Enfold.
We are currently relying on other users to translate the theme. The current version of the language file can be found on the themes lang folder. Please download 3.0.2 which includes all latest (complete/incomplete) language files. You can use the Codestyling Localization plugin in order to translate missing strings. Make sure to create a back up of the lang folder when you update the theme.
Regards,
Ismael -
AuthorPosts
