Forum Replies Created
-
AuthorPosts
-
September 26, 2015 at 9:52 am in reply to: Trying to Understand Portfolios – tutorials not enough #509427
Hey!
If you convert them to portfolio items, they will not work as a default blog post any more. I think it’s better if you recreate the portfolio items.
Cheers!
IsmaelSeptember 26, 2015 at 9:44 am in reply to: Shrinking Header no longer working with logo size #509425Hi!
Yeah. My bad. It does have a transition effect. I access the page and I think the issue is that the logo height is not more than 50px. Is it possible for you to upload a taller logo? Height should be at least 100px.
Cheers!
IsmaelHi!
Can you please provide a screenshot of the layout that you have in mind? Note that you can modify the Layout > “Inner Padding” of the column elements.
Cheers!
IsmaelHi!
You forgot to add the “px” in the “Maximale breedte Container” value. We added it for you.
Cheers!
IsmaelSeptember 26, 2015 at 9:20 am in reply to: Predicable problem endemic to Envato & its suppliers #509420Hi!
1.) Yes, that is normal. You have to add the menu items on Appearance > Menus panel. If you can’t see the product category items, look for the Screen Options button then enable the items that you want to add as menu.
2.) You can watch a video for setting up the products here: https://vimeo.com/77351544
Starting a product page in the theme is the same as the usual process when you install the woocommerce plugin so their documentation will help: http://docs.woothemes.com/documentation/plugins/woocommerce/getting-started/
3.) This tutorial will help: https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/
These articles might also help:
http://kriesi.at/archives/wordpress-beginners-how-to-start-with-enfold-from-scratch
http://kriesi.at/archives/the-complete-guide-to-updating-enfoldBest regards,
IsmaelHey!
How can we login to the site? I tried wp-admin or login but it’s not working. Please post the actual login url. The page looks OK though: http://learnclubdance.com/accessories/test-own-the-dance-floor/
Can you please provide a screenshot of the issue? Use imgur or dropbox.
Cheers!
IsmaelSeptember 26, 2015 at 9:05 am in reply to: Color Section not adjusting to content on responsive #509418Hey!
Good job on the site. :)
You have this css code which breaks the logo element on mobile:
.partner-logos { max-height: 240px !important; }Try to use css media query for that.
Best regards,
IsmaelHi!
Please avoid from bumping or answering your own thread because it will push back the thread to the end of queue. We will not be able to answer it immediately. Regarding the question, you can edit the ar.po file inside the lang folder of the theme. Or you can try this plugin: https://wordpress.org/plugins/loco-translate/
Regards,
IsmaelSeptember 26, 2015 at 8:50 am in reply to: Mobile Navigation Menu Displaying As White Box Only #509415Hey!
I checked the site again but I think you removed the code. Please add it back then we’ll adjust the code accordingly. Try to remove this part in the css code:
#top #wrap_all .av_header_transparency,Best regards,
IsmaelHey grapho1978!
Thank you for using Enfold.
There is actually an option for that. Go to Enfold > Header > Extra Elements panel. You can enable the social icons, secondary menu or the phone info field from that panel. If you have wpml, you should enable the secondary menu in order to add the language flags.
Best regards,
IsmaelSeptember 26, 2015 at 8:44 am in reply to: Single page design, menu hidden / not shown when at top of page. #509412Hi mazerti!
Thank you for using Enfold.
Please edit the page then look for the Layout > Header visibility and transparency settings. Set it to “No transparency”. If you don’t mind, please post the page url here so that we can take a better look at the issue.
Best regards,
IsmaelHey reddishpinkmedia!
Thank you for using Enfold.
Add this in the Quick CSS field:
.page-id-510 .slide-image { pointer-events: none; }Best regards,
IsmaelHey!
I can’t seem to access the page, not sure if the site is down or my connection is currently grumpy. Please try to check it on the latest versions of Chrome or Firefox.
Regards,
IsmaelHi!
There is this container called “adsbygoogle”, probably added by a plugin. Try to add this in the Quick CSS field:
.adsbygoogle { display: none !important; }Best regards,
IsmaelHey!
You can find an example here: https://kriesi.at/support/topic/full-width-submenu-as-new-menu-location/#post-471378
Maybe, you can ask the plugin developer, how to override the single post template. I found this documentation which might help: http://wp-events-plugin.com/documentation/using-template-files/
Regards,
IsmaelHey!
I’m sorry but it’s not possible to set the post slider to more than 5 items because each set is inside a product wrapper. If you click the “next” or “previous” button it will go to the next wrapper containing another set of items.
Regards,
IsmaelHey!
1.) You can add the hotspot image inside the color section then remove the section’s margin and padding via css. Edit the color section, apply a unique id attribute in the Section ID field. Use “hotspot-section” for example. Add this in the Quick CSS field:
#hotspot-section .container { width: 100%; max-width: 100%; padding: 0; }2.) Unfortunately, it’s not possible to set the height of the hot spot image base on the browser height without major modification on the theme.
Cheers!
IsmaelHi!
Add a separator element via shortcode wand to create a gap between the text.
Best regards,
IsmaelHey!
Thank you for the update. Try this in the Quick CSS field:
#top .av-subnav-menu a[href="http://ganubis.com/nighthawks/"] { top: 10px; }Regards,
IsmaelSeptember 26, 2015 at 8:07 am in reply to: Tablet Portrait Columns & Ajax Portfolio Slideshow #509392September 26, 2015 at 8:05 am in reply to: Post meta information not appearing on single post in restaurant theme in Enfold #509389Hey!
Great! Glad it worked. And I would like to apologize for the frustration. We are doing to our best to help and we’ll try to accommodate customizations as long as it is within reason. We can’t do so every time because there’s a lot of inquiries posted every day. Thank you for your patience.
Cheers!
IsmaelHi!
The code above will completely remove the thumbnails. Please try it first then update us if it doesn’t work. This is the full list of the thumbnails if you want to remove everything:
function ava_image_sizes() { add_image_size('masonry', 0, 0); add_image_size('magazine', 0, 0); add_image_size('widget', 0, 0); add_image_size('featured', 0, 0); add_image_size('featured_large', 0, 0); add_image_size('extra_large', 0, 0); add_image_size('portfolio_small', 0, 0); add_image_size('gallery', 0, 0); add_image_size('entry_with_sidebar', 0, 0); add_image_size('entry_without_sidebar', 0, 0); add_image_size('square', 0, 0); } add_action( 'after_setup_theme', 'ava_image_sizes', 11 );Note that removing the thumbnails will have a negative effect on the site, on google pagespeed insights for example.
EDIT: Don’t forget to use the plugin suggested on the previous post after you add the code. It will delete all the previous images then regenerate the default image.
Regards,
IsmaelSeptember 25, 2015 at 10:35 am in reply to: Sorting options not displayed. seems to be missing #508886Hi ngyuansong!
Thank you for using Enfold.
Did you set the sort options to show? The sort container is set to “hidden” when I checked the page.
<div class="sort_by_cat hidden">Please try to update the theme to the latest version, 3.3.2.
Cheers!
IsmaelHey!
The site is currently not using the latest version of the theme. Please update to version 3.3.2. Try to add this in the Quick CSS field:
.av_seperator_small_border .av-main-nav > li > a > .avia-menu-text { border-left-style: solid; border-left-width: 1px; padding-left: 13px; margin-left: -13px; }Cheers!
IsmaelHey connect4consulting!
Thank you for using Enfold.
What is the code that you use to add the custom content? Please post it on pastebin.com. Try to add a link tag:
<div class="custom_content"><h1><a href="URL OF HOME PAGE">CRITICAL CONNECTIONS</a></h1></div>Best regards,
IsmaelSeptember 25, 2015 at 10:23 am in reply to: Website cut off on viewing from iPhone5c and iPhone6 #508872September 25, 2015 at 10:19 am in reply to: Remove Thin Vertical lines between MegaMenu columns #508869Hi!
This should work:
#top #header .avia_mega_div>.sub-menu>li:nth-child(n+2) { border-right: 0; }Regards,
IsmaelHey urdaniz!
Thank you for using Enfold.
This issue has been reported before but it is intermittent, seems random, so we never figured out the real cause of the issue. I actually checked the site and see if I can reproduce it but the page always load properly when I click the “back” button. I’ll ask the rest of the support team if they can reproduce the issue.
P.S: Site looks awesome. :)
EDIT: Browsing through the site, I realized that the preloader is disabled. Please enable it back.
Best regards,
IsmaelHi!
Yes, I know exactly what you want. That’s why I suggested to delete the registered thumbnail sizes in functions.php file. Actually, I edited my post above. You can try the ava_image_sizes function in the child theme’s functions.php file. Regenerate the thumbnails with this plugin: https://wordpress.org/plugins/force-regenerate-thumbnails/
Regards,
Ismael -
AuthorPosts
