Forum Replies Created
-
AuthorPosts
-
Hi!
Alright. Please edit the .htaccess file inside the wp-content folder then follow the instruction here: http://www.kavoir.com/2009/01/htaccess-deny-from-all-restrict-directory-access.html
You can also delete it. Create a back up of the file before doing so.
Best regards,
IsmaelHey Cris!
Thank you for using Enfold.
Please refer to this link for a possible fix: http://kriesi.at/documentation/enfold/enable-cors/
Cheers!
IsmaelHi sky19er!
Thank you for using Enfold.
Please try this:
header_color .header_bg { background-color: red !important; }
Regards,
IsmaelHi!
Please post the code of the .htaccess file on pastebin.com, we would like to check it. You can also delete that file then resave the permalink settings. Make sure to create a backup of the file just in case. The link to the stylesheet is still set to the cached version:
<link rel="stylesheet" id="avia-dynamic-css" href="http://vitree.com/newsite/wp-content/uploads/dynamic_avia/vitree.css?ver=5566e27cc6c68" type="text/css" media="all">
What is the folder name of the parent theme?
Best regards,
IsmaelHi!
Add this in the Quick CSS field to fix the thumbnails:
.lightbox { position: relative !important; }
The lightbox plugin overrides the default thumbnail style.
Regards,
IsmaelHey!
You can add this in the Quick CSS field to force the grid to resize on ipad, same as the iphone view:
@media only screen and (max-width: 989px) and (min-width: 767px) { .responsive #top .av-masonry-entry { width: 49.90%; } }
Remove browser cache then reload the page.
Regards,
IsmaelHi!
Please follow the steps provided here: http://smallbusiness.chron.com/display-hebrew-wordpress-43797.html
You need to install this version of WordPress: https://he.wordpress.org/
The WordPress dashboard should be translated automatically but if you expect the theme options to be translated to hebrew, unfortunately, it’s not translatable at the moment because translations messes up with the options. If you want to translate the frontend, use this plugin: https://wordpress.org/plugins/loco-translate/
Best regards,
IsmaelMay 28, 2015 at 11:19 am in reply to: Wierd behavior in default editor with image alignment & editing toolbar #451105Hi!
It’s just a little bug in the editor styling. Nothing to worry about. Maybe, this will help:
add_action( 'admin_head', 'ava_custom_admin_style' ); function ava_custom_admin_style() { echo '<style type="text/css">.mce-arrow-left { width: 500px !important; min-width: 0 !important; }</style>'; }
Best regards,
IsmaelHey!
The image element is aligned to the center by default. Did you add any css modifications? Try to edit the image element then set the Image Alignment to left.
Cheers!
IsmaelHi pkunzipula!
Thank you for using Enfold.
I’m sorry but we don’t provide support for third party plugins. If you want to modify the masonry gallery shortcode, edit the masonry_gallery.php file inside the config-templatebuilder > avia-shortcodes folder. Contact codeable for further modifications: http://kriesi.at/contact/customization
Cheers!
IsmaelHi!
It’s possible to have the same testimonial element but you need to add the shortcode directly to the template files. Use the do_shortcode function. https://codex.wordpress.org/Function_Reference/do_shortcode
The element that can get you as close as possible to the layout that you want is the grid row element. Add two grid row elements, set the cell size to 2/3, 1/3. Add the first large image in the first grid row’s 2/3 cell and I’m sure you’ll know what to do next. You can set the padding to 0. The problem with this is that grid rows are automatically set to full width so you need to add custom css customizations in the Quick CSS field. You might also need to adjust the height on different screen sizes so css media queries will come in handy.
If it doesn’t work, play around with the layer slider.
Cheers!
IsmaelHi!
Did you set the Blog Layout > Blog Style to use the advance layout builder? If not, please set it then edit the blog page. Insert the blog posts element plus the additional content that you want to add.
Best regards,
IsmaelHi!
I checked the page but I didn’t see the code anywhere. Please add it again. Make sure that the code is exactly the same as here:
.avia-mozilla .av_seperator_small_border .av-main-nav > li > a > .avia-menu-text { margin-left: 0 !important; }
Regards,
IsmaelHey!
The code above should increase the height of the “orange line” but it should remain at the bottom. Can you please test it again? If possible, please provide a screenshot after you add the code so that we can see the issue.
Cheers!
IsmaelHey!
Unfortunately, there is no element in the advance layout builder that can display the product categories, same as the default shop page. What you can do is to manually create a grid, use the column layouts, and then add the category images manually by using the image element. Set the link to your custom category pages. In your custom category pages, use the product grid element to show products from a specific category.
If you don’t want to do this manually, just follow the suggestions above but the custom category pages will be limited to the default options.
Regards,
IsmaelHi alex5252!
Thank you for using Enfold.
You can try this in the Quick CSS field:
.av-main-nav > li { line-height: 30px; width: 16.66%; } .avia-menu-text hr { margin: 10px 0 0 0; }
Then adjust the menu label to something like this:
<hr style="border-top: dotted 1px;"><span class="menu-label">Home</span>
Use css media queries to adjust the menu style on smaller screens.
Best regards,
IsmaelHi!
You can use this to hide the fallback tooltip:
@media only screen and (max-width: 767px) { .av-hotspot-fallback-tooltip { display: none !important; } }
Regards,
IsmaelHi Vincent!
Thank you for using Enfold.
You can modify framework > php > class-framework-widgets.php, look for this code:
echo $before_widget; echo "<div class='tabcontainer border_tabs top_tab tab_initial_open tab_initial_open__1'>"; echo '<div class="tab first_tab active_tab widget_tab_popular"><span>'.__('Popular', 'avia_framework').'</span></div>'; echo "<div class='tab_content active_tab_content'>"; avia_get_post_list('cat=&orderby=comment_count&posts_per_page='.$posts); echo "</div>"; echo '<div class="tab widget_tab_recent"><span>'.__('Recent', 'avia_framework').'</span></div>'; echo "<div class='tab_content'>"; avia_get_post_list('showposts='. $posts .'&orderby=post_date&order=desc'); echo "</div>";
Replace it with:
echo $before_widget; echo "<div class='tabcontainer border_tabs top_tab tab_initial_open tab_initial_open__1'>"; echo '<div class="tab first_tab active_tab widget_tab_recent"><span>'.__('Recent', 'avia_framework').'</span></div>'; echo "<div class='tab_content'>"; avia_get_post_list('showposts='. $posts .'&orderby=post_date&order=desc'); echo "</div>"; echo '<div class="tab widget_tab_popular"><span>'.__('Popular', 'avia_framework').'</span></div>'; echo "<div class='tab_content active_tab_content'>"; avia_get_post_list('cat=&orderby=comment_count&posts_per_page='.$posts); echo "</div>";
Best regards,
IsmaelHey dnikitiuk!
Thank you for using Enfold.
Yes, it’s possible but you need to modify the productslider.php file. It is located in the config-templatebuilder > avia-shortcodes folder. Unfortunately, this kind of customization is not something we can provide here. Please hire a freelance developer or contact codeable: http://kriesi.at/contact/customization
Best regards,
IsmaelMay 28, 2015 at 9:48 am in reply to: Changing Out Curent Clients Child/Multisite Theme to Enfold #451028Hi Joshua!
Thank you for using Enfold.
We really can’t answer that here because it will depend on the current theme that you’re using. You should ask the theme author. Of course, the first thing that you need to do is to create a backup and a restore point just in case.
Best regards,
IsmaelHi!
Remove the 1/5 columns, place all icons inside a 1/1 column. Set them to align left. Use css to center align the buttons.
Regards,
IsmaelMay 28, 2015 at 9:43 am in reply to: Customizing breadcrumbs for custom post types (part 2!) #451022Hi raisonbrands!
Thank you for using Enfold.
Try to change the is_singular() function to is_category. https://codex.wordpress.org/Function_Reference/is_category
Make sure to use another function name for “avia_change_breadcrumb_cat”.
Regards,
IsmaelHey!
The layer slider plugin automatically resize the slide background to make it responsive. You need to set the Layers Container and Responsive Under field values in the Slider Settings. Default value is around 1140. Regarding the heading tags, the styles are being overwritten by the theme defaults. Edit the layer then go to the Styles panel. Set the font size.
Best regards,
IsmaelHey!
Unfortunately, it’s not possible to render the post title, category or post meta info automatically when you use the advance layout builder. Like I said, all contents should be added manually. Also, don’t forget to add a summary on the excerpt box if you want to have an excerpt in the blog overview page.
Best regards,
IsmaelHi!
What happens when you add this in the Quick CSS field:
@media only screen and (max-width: 767px) { .responsive #top { overflow-x: hidden; position: relative; } }
Please remove browser cache then reload the page.
Regards,
IsmaelHey!
The html structure of the site looks really different from the default theme because you did a lot of modifications on the child theme. The header.php and footer.php are different, these files are quite essential in order for the theme to work correctly. I’m sorry but this issue is something we can’t trace. Please hire a freelance developer to look for the error cause by your modifications.
Cheers!
IsmaelHey!
Yes, it could be the same thing. It usually happens when you create a container using a div or span tag manually. If you forget to close the tags, it will erase all the contents below it. Unfortunately, the builder can’t detect that mistakes so it will definitely break the layout.
Cheers!
IsmaelHi!
Please follow the suggestions above in order to create a footer or socket menu. If that’s not what you’re looking, please post a screenshot.
Cheers!
IsmaelHey!
The wp_is_mobile function is still in beta so it may not cover all mobile devices, try to replace the code with this:
add_filter('avf_logo','av_change_logo'); function av_change_logo($logo) { $useragent = $_SERVER['HTTP_USER_AGENT']; if(preg_match('/(android|bb\d+|meego).+Mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i',$useragent)||preg_match('/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i',substr($useragent,0,4))) { $logo = "http://mauston.org/wp-content/uploads/2015/05/mauston-logo-mobile.jpg"; } return $logo; }
Remove browser cache then reload the page. This specific code works on my installation.
Cheers!
Ismael -
AuthorPosts