Forum Replies Created
-
AuthorPosts
-
Hey!
How did you modify the tag archive pages to look like that? Did you create a new template?
Regards,
IsmaelJune 5, 2015 at 6:48 am in reply to: Need only one of my webpages not show up as a menu item on my website #454939Hey!
1.) Go to Appearance > Menu panel.
2.) Create a menu.
3.) Set it as Enfold Main Menu in the theme location settings, look for it below the menu editor.
4.) Add the pages that you want to display in the main menu.I think you missed step number 3.
Best regards,
IsmaelHi!
Did you get a refund? If you did then that’s good. It’s weird that you bought the product but they don’t let you have it. You should report that to Envato. Like I said, you don’t need to buy the plugin because it is already included in the theme package.
Cheers!
IsmaelHey!
Is there any website that you know with an example of the “image-flip”? We would like to check it.
Regards,
IsmaelHi!
Use the menu id instead of the menu name.
add_filter('wp_nav_menu_args', 'my_wp_nav_menu_args_filter'); function my_wp_nav_menu_args_filter($args) { if ($_COOKIE['division'] == 'west' && $args['menu_id'] == 'avia-menu' ) { $args['menu'] = '7'; } return $args; }Change 7 to the menu id of the “West Main Menu”. How did you set the cookie?
Cheers!
IsmaelHi!
I checked the first section and the styling reflects the alternate content settings. Alternate content background color is set to #fafafb.
.alternate_color, .alternate_color .site-background, .alternate_color .first-quote, .alternate_color .related_image_wrap, .alternate_color .gravatar img .alternate_color .hr_content, .alternate_color .news-thumb, .alternate_color .post-format-icon, .alternate_color .ajax_controlls a, .alternate_color .tweet-text.avatar_no, .alternate_color .toggler, .alternate_color .toggler.activeTitle:hover, .alternate_color #js_sort_items, .alternate_color.inner-entry, .alternate_color .grid-entry-title, .alternate_color .related-format-icon, .grid-entry .alternate_color .avia-arrow, .alternate_color .avia-gallery-big, .alternate_color .avia-gallery-big, .alternate_color .avia-gallery img, .alternate_color .grid-content, .alternate_color .av-share-box ul, #top .alternate_color .av-related-style-full .related-format-icon, .alternate_color .related_posts.av-related-style-full a:hover, .alternate_color.avia-fullwidth-portfolio .pagination .current, .alternate_color.avia-fullwidth-portfolio .pagination a, .alternate_color .av-hotspot-fallback-tooltip-inner, .alternate_color .av-hotspot-fallback-tooltip-count { background-color: #fafafb; color: #666666; }Try to change the color settings to something bright like yellow, violet etc. to see which elements are affected by the current settings.
Best regards,
IsmaelHi!
Yes, that is an option if you want to set the featured image manually. If you want to use the default featured image option and get the actual image size, you can resize the blog image thumbnail. Edit function.php, look for this code:
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>845, 'height'=>321); // big images for blog and page entries $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 ); // images for fullsize pages and fullsize sliderAdjust the width and height and then regenerate or upload the images as featured image again.
Cheers!
IsmaelHi set_carsten!
Thank you for using Enfold.
Make sure that you have the latest version, 3.2. You can find the option on Enfold > Header > Header Layout panel. Adjust the Header Style settings.
Regards,
IsmaelHey chris2712!
Thank you for using Enfold.
The error clearly states that the issue comes from the plugin files, not from the theme. Unfortunately, we don’t provide support for third party plugins. Please contact the plugin author regarding this issue.
Cheers!
IsmaelHi!
Add this to the Quick CSS field to disable the link:
#top .avia-button-fullwidth { pointer-events: none; }Cheers!
IsmaelHi!
Alright. Try to add this to the Quick CSS field:
@media only screen and (max-width: 767px) { .responsive #top { overflow-x: hidden; position: relative; }}Cheers!
IsmaelHi!
Please try this:
.rounded-container img { min-height: 81px !important; min-width: 81px !important; }Hard refresh the page after.
Cheers!
IsmaelHey!
The difference is the header transparency, that’s why this css code for the mobile menu is not working on the new page:
@media only screen and (max-width: 767px) { #top #wrap_all .av_header_transparency, .av_header_transparency #advanced_menu_toggle { background-color: #ffffff; color: #c05527; border-color: #ededed; }}The color section background attachment works ok here: http://sundaradesign.com.au/dev/test-color-section/
Background attachment is set to scroll by default then adjusted to fixed in the Quick CSS field. This is the css code:
@media only screen and (min-width: 768px) {#test-section { background-attachment: fixed !important; }}Regards,
IsmaelHi Chris8800!
Thank you for using Enfold.
I’m sorry but what do you mean by “Image Database”? If you want to download the demo data, go to Enfold > Demo Import panel. Select the demo that you want to use. The demo images are included.
Cheers!
IsmaelHey!
Try to replace the code with this:
add_action('wp_footer', 'ava_custom_script', 10); function ava_custom_script(){ ?> <script> (function($){ $('.avia_partner_widget a').each(function() { $(this).removeAttr('target'); }); }(jQuery)); </script> <?php }Cheers!
IsmaelJune 4, 2015 at 12:10 pm in reply to: Company Logo to be displayed everywhere on the site excepted on the frontpage #454396Hey!
I’m not sure I understand your follow-up inquiry regarding a background or something. Can you please provide a screenshot? I didn’t know that you add the logo as an image element, with that, just remove the logo in the home page’s advance layout builder.
Regards,
IsmaelHey elbnetz!
Thank you for using Enfold.
You can set each post to have a transparent header. If you want all posts to automatically have this setting, unfortunately, that is not possible. You have to set it manually.
Cheers!
IsmaelJune 4, 2015 at 11:59 am in reply to: How to add section from advanced builder frontpage to each blog post #454390Hey parentecoaching!
Thank you for using Enfold.
You can edit the includes > loop-index.php file. Use the do_shortcode function: https://codex.wordpress.org/Function_Reference/do_shortcode
If you don’t want to edit the file directly, you can use the ava_after_content action hook. Add something like this in the function.php file:
add_filter('ava_after_content', 'ava_after_main_container_mod', 20, 1); function ava_after_main_container_mod() { if(is_singular('post')) { $output = do_shortcode("[av_textblock size='' font_color='' color='']Click here to add your own text[/av_textblock]"); echo $output; } }Cheers!
IsmaelHey!
You need to add the text on the same text widget:
<div class="logo-left"><a href="http://www.eiffageconcessions.com/"><img src="http://legrandmag.fr/wp-content/uploads/2015/06/logo.jpg"></a> </div> <div class="logo-right"> <span>Partenaire de vos projets</span> </div>Add this in the Quick CSS field:
#header .widget { width: 100%; padding-top: 0; position: absolute; top: -130px ; left: 0; } .logo-left { position: absolute; left: 50%; transform: translateX(-50%); } .logo-right { position: absolute; right: 50px; }Best regards,
IsmaelJune 4, 2015 at 11:43 am in reply to: Please help with Layout, I want to post a banner at the top! #454378June 4, 2015 at 11:40 am in reply to: Still can't update to 3.1.5 (error message when updating in WP) #454376Hi!
Have you tried logging out of WP dashboard? Remove browser cache then login again. You should have access to the files, an ftp or a cpanel account. What is your current hosting provider?
Cheers! `
IsmaelHey serg1o!
Thank you for using Enfold.
What do you mean by “the recipient in the field SENDER viewing a score.”? By default, the sender’s email address should be included in the email. Please give us a link to the actual contact form.
Regards,
IsmaelHey tese!
Thank you for using Enfold.
Edit the page with the portfolio grid element then set the Link Handling to “AJAX Portfolio”.
Cheers!
IsmaelHey majklcze1!
Thank you for using Enfold.
There is no option for that by default. You can try to add a static content inside a theme hook. Add this in the functions.php file:
add_filter('ava_after_main_container', 'ava_after_main_container_mod', 20, 1); function ava_after_main_container_mod() { $output = "<div class='static-content'>"; $output .= "<h3>Custom Title</h3>"; $output .= "</div>"; echo $output; }Adjust the style of the content in the Quick CSS field:
.static-content { position: absolute; z-index: 1000; top: 400px; left: 100px; }Regards,
IsmaelHey!
Alright. Please post the login details here, we would like to check it.
Regards,
IsmaelHey!
The login page is not working: http://www.hawthorncreative.us/wp-login
Please try to deactivate all plugins.
Regards,
IsmaelHey umbrella8!
Thank you for using Enfold.
1.) On version 3.2., will be released today or tomorrow, you can adjust the background, margins, borders etc of the column layouts.
2.) Which specific headings are you trying to change? Please provide a screenshot or an actual link to the page.
Best regards,
Ismael -
AuthorPosts
