Forum Replies Created
-
AuthorPosts
-
Hi typoskull!
Go to Appearance > Menus then create a custom link. Place a hashtag on the URL.
Cheers!
IsmaelHi uglymethod!
Thank you for using the theme. I hope you’re doing great.
Can you please give us a link to the website?
Best regards,
IsmaelHi Jane!
Thank you for using the theme. I hope you’re doing great.
Unfortunately, that is not possible without modifications. Please hire a freelance developer to move the breadcrumbs below the slider. For further customization, please visit Werkpress.
Cheers!
IsmaelHey!
Did you copy header.php file on the child theme folder? Please delete that and duplicate the header.php file from the parent theme folder. Yes, there a lot of changes with the header. Kriesi added a new platform to modify the header settings. You’ll see more options on Enfold > Header. CSS modifications that you added for the header might be rendered useless, please remove them then reconfigure the header settings.
Best regards,
IsmaelMarch 14, 2014 at 7:11 pm in reply to: Main menu item highlighted, when being on a grandchild page #237787Hey!
Please use this instead:
.header_color .main_menu ul:first-child > li.current-page-ancestor > a { color: red !important; }This should highlight the ancestor menu item.
Best regards,
IsmaelHi IrisMar17!
You need to manually add grayscaled images or add this on Quick CSS or custom.css:
.avia-logo-element-container img { filter: url(filters.svg#grayscale); filter: gray; -webkit-filter: grayscale(1); }This will render the partner/logos to grayscale.
Cheers!
IsmaelHi intosuwo!
I’m sorry but I’m a bit confused about your question. The social icons do appear on the top bar and above the header which is called header_meta. Can you please post the link to the website? A screenshot of the issue or what you’re trying to do will help.
Regards,
IsmaelHey!
Please use this on Quick CSS or custom.css:
.op-plugin .content { border: none; }Go to Enfold > Styling > choose Stretch Layout.
Best regards,
IsmaelHi cerf!
1.) Please use this plugin: http://wordpress.org/plugins/codestyling-localization/
Go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and select your language (italian) and click the “create po-file” button. Click on “Rescan” to search for all text strings. Afterwards click on “Edit” and translate the required strings from the “avia_framework” textdomain.
2.) I can’t see any example of the second issue above. Please post a link to the actual page with the said strings.
Regards,
IsmaelMarch 14, 2014 at 6:39 pm in reply to: highlighting item menu when in a post that belongs to the category's name #237770Hi sergeesteves!
Thank you for using the theme. I hope you’re doing great.
Can you please give us a link to the website? I don’t think this is possible because the menu doesn’t recognize any relations between a post inside a category page. This may require modification that is beyond the scope of support. Please hire a freelance developer or visit Werkpress for further modifications.
Regards,
IsmaelMarch 14, 2014 at 6:31 pm in reply to: Addon Visual Composer – is this plugin working with Enfold? #237764Hey f!
Honestly, we don’t have access to the plugin so we can’t tell you if you’ll encounter any compatibility issues. It looks safe though. Please contact the plugin author, maybe someone already ask him about Enfold.
Best regards,
IsmaelHey!
Please try to contact your host and ask them if there is a limit on the max upload size. FTP should work without problem though. Please try it.
Regards,
IsmaelHey tlow87!
You can find the logo on includes > helper-main-menu.php. Find the code on line 101:
echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', $addition, 'strong', true);Best regards,
IsmaelHi danmandle!
Edit the iconbox then switch to the text or html editor then add a span or anything.
<span class="blank"></span>This will show nothing.
Best regards,
IsmaelHey Jorge!
Did you translate the pages to Spanish? You need to have the translated version of the pages first before you can add them on Spanish version of the menu. After you translated the pages, you can automatically sync the menu on WPML > WP Menus Sync.
Regards,
IsmaelHi!
You can add this on Quick CSS or custom.css to position the bottom menu to the left:
.html_header_top.html_logo_center .main_menu ul:first-child { width: 100%; }Regards,
IsmaelHi fourdesigncornwall!
Please switch your theme to debug mode. Edit function.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;Below, add this code:
//set builder mode to debug add_action('avia_builder_mode', "builder_set_debug"); function builder_set_debug() { return "debug"; }You will be able to see the actual shortcode below the builder. You can copy those shortcodes on another page.
Best regards,
IsmaelHi!
Please reset the settings on Settings > Reading to default. Set the homepage on Enfold > Theme Options > Frontpage settings. Don’t select any page on “Where do you want to display blog?” option. Edit your home page then add the Blog Post element, set “1” for Post Mumber.
Regards,
IsmaelHey Paul!
You can add this on Quick CSS or custom.css to remove the border:
tr:first-child th, tr:first-child td { border: none; }Regards,
IsmaelHey mattmorse!
You can use this plugin to minify scripts and stylesheets: https://wordpress.org/plugins/bwp-minify/
Cheers!
IsmaelHi mattmorse!
You can add this on functions.php:
add_filter( 'the_password_form', 'avf_custom_password_form' ); function avf_custom_password_form() { global $post; $label = 'pwbox-'.( empty( $post->ID ) ? rand() : $post->ID ); $before = '<form class="protected-post-form" action="' . get_option('siteurl') . '/wp-pass.php" method="post"> ' . __( "<img src='IMAGE URL HERE'>This post is password protected. To view it please enter your password below:" ). ' <label for="' . $label . '">' . __( "Password:" ) . ' </label><input name="post_password" id="' . $label . '" type="password" size="20" /><input type="submit" name="Submit" value="' . esc_attr__( "Submit" ) . '" /> </form> '; return $before; }On the $before variable, you can change the image url, add text, divs etc.
Best regards,
IsmaelHi mattmorse!
You can edit includes > loop-search.php file to change the search results page. Create a folder called includes then add the loop-search.php file. You can remove line 136:
<h3 class=''><?php _e('Feel like browsing some posts instead?', 'avia_framework'); ?></h3>And line 139-144 to remove the tabbed widget:
the_widget('avia_combo_widget', 'error404widget', array('widget_id'=>'arbitrary-instance-'.$id, 'before_widget' => '<div class="widget avia_combo_widget">', 'after_widget' => '</div>', 'before_title' => '<h3 class="widgettitle">', 'after_title' => '</h3>' ));Best regards,
IsmaelHey mattmorse!
You can edit includes > error404.php file if you want to change the layout of the 404 page. Create a folder called includes then add the error404.php file.
Regards,
IsmaelHi!
On what exact elements are you trying to add the shadow effect? I visited the page and I can only see a very large slider and 4 columns below. I’m not sure where you want to apply the shadow.
Cheers!
IsmaelHey mikemurphy10!
Did you try to reconfigure the header settings on Enfold > Header? Please add this on Quick CSS:
@media only screen and (max-width: 767px) { .responsive #top #header_meta .social_bookmarks li:last-child a { border-right: none; } #top #header .social_bookmarks li:last-child { border-right: 1px solid; } }Regards,
IsmaelHi Enabl!
Please add this on your custom.css or Quick CSS:
@media only screen and (max-width: 767px) { .responsive .mobile_slide_out .logo { display: block; margin: 0 auto; float: none !important; position: relative; } }I suggest that you keep the css to hide the menu, it is much more convenient. Add visibility: hidden;.
Best regards,
IsmaelHi!
There is a minor issue on Enfold 2.6, google fonts are not loaded. Dude created a fix and patched it on 2.6.1. :)
Regards,
IsmaelHey!
Thank you for using the theme. I hope you’re doing well today.
You should probably remove all the css modifications that you added for the header. Reconfigure the header settings on Enfold > Header. You’ll see that Kriesi added a lot of header options like header height, logo position etc. Saving the settings might fix the issue.
Cheers!
IsmaelHi!
The link gives me a 404 page. The solution I provided on the other thread only works on firefox. Let me ask Dude for more info. Please wait for his response.
Cheers!
IsmaelHey carlamurray!
Thank you for using the theme. I hope you’re doing well today.
Unfortunately, there is still no option for adding gradient button for the menu. You need to modify it via css. There are lots of tutorials for css gradients. Refer to this link: http://css-tricks.com/css3-gradients/
Please post a screenshot of what you’re trying to do. For further modifications, please visit Werkpress.
Cheers!
Ismael -
AuthorPosts
