Forum Replies Created
-
AuthorPosts
-
April 19, 2015 at 8:23 am in reply to: apple touch icon for iphone and ipad en icon for android #430834
Hi TjaardHeikens!
Thank you for using Enfold.
Use the wp_head function in the functions.php file:
add_action('wp_head', 'ava_add_your_stuff'); function ava_add_your_stuff() { ?> <link rel="apple-touch-icon" sizes="57×57" href="apple-touch-icon-iphone.png" /> <link rel="apple-touch-icon" sizes="72×72" href="apple-touch-icon-ipad.png" /> <link rel="apple-touch-icon" sizes="114×114" href="apple-touch-icon-iphone-retina-display.png" /> <link rel="apple-touch-icon" sizes="144×144" href="apple-touch-icon-ipad-retina-display.png" /> <?php }
Regards,
IsmaelHi WolfvanHaeren!
Thank you for using Enfold.
You can edit the search.php and includes > loop-search.php. Unfortunately, it will require a major modification on the theme to make them look like the archive pages. Please hire a freelance developer or contact codeable: http://kriesi.at/contact/customization
Anyway, you can try the modifications that was provided here: https://kriesi.at/support/topic/add-featured-image-to-search-results/#post-249161
Regards,
IsmaelHi Enffie!
Thank you for using Enfold.
Make sure that the portfolio items belong to at least a single category. Create a page, add a Portfolio Grid element then enable the Sortable? option.
Please take some time to review all of the resources in the Theme Documentation. A lot of basic stuff like theme installation, element configuration, options overview, css snippets and whole lot of handy stuff regarding the theme are probably available in there. You can watch video tutorials or get hold of a few hooks and filter functions that may help you modify the theme as you like. You can also search the forum for any related questions or issues.
If you don’t find what you’re looking for, don’t hesitate to let us know and we will be happy to assist you. For any complicated questions or add-on, please visit our Feature Requests page. Thanks!
Regards,
IsmaelHi WolfvanHaeren!
Thank you for using Enfold.
1.) Use this plugin to alter the title of the archive pages: http://kb.yoast.com/article/146-yoast-wordpress-seo-titles-metas-template-variables
2.) Go to Settings > Permalinks. Look for the Category base (permalink ex. news/) and Tag base (permalink ex. newtag/) field.
Regards,
IsmaelHey!
Something like this should work.
add_action('wp_footer', 'ava_auto_click'); function ava_auto_click() { if ( $_GET["psort"] == "html" ) { ?> <script> (function($){ $(window).load(function() { $('.html_sort_button').trigger('click'); }); })(jQuery); </script> <?php } elseif ( $_GET["psort"] == "photography" ) { ?> <script> (function($){ $(window).load(function() { $('.photography_sort_button').trigger('click'); }); })(jQuery); </script> <?php } }
As previously mentioned, you have to use the portfolio category slug as the value of the “psort” parameter in the url. So the url should look something like for the “html” items.
http://www.mysite.com/myportfolio?psort=html
And like this for the photograpy items:
http://www.mysite.com/myportfolio?psort=photography
Just make sure that the value psort parameter value is the same as portfolio category.
Regards,
IsmaelHey!
You can adjust the content top padding with this:
.html_header_transparency #top .avia-builder-el-0 .container { padding-top: 200px; }
Replace the code with this to affect all transparent headers:
.html_header_transparency #header_main > .container, .page-id-12 #header_main > .container .main_menu ul:first-child > li > a, .page-id-12 #header_main #menu-item-shop .cart_dropdown_link { height: 120px !important; line-height: 120px !important; } .html_header_transparency strong.logo { top: 30px; }
Cheers!
IsmaelHi pistonluca!
Thank you for using Enfold.
Edit the images in the masonry gallery then look for the “Custom Link” field. Add the video url. It will open the video in a lightbox when you click on the masonry gallery item.
Regards,
IsmaelApril 19, 2015 at 7:55 am in reply to: Single Photos still Linked to Curtom URL -WP.com after Website Transfer #430827Hey dominiquehurley!
Thank you for using Enfold.
Looks like the database are not properly transferred so the images still points to the old url. They will be remove when you shut down the old website or when you remove the files. You might need to re-transfer the site again but this time, use this plugin: https://wordpress.org/plugins/wp-migrate-db/
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-32684I think it’s best if you hire a freelancer to this job. Please contact codeable: http://kriesi.at/contact/customization
Cheers!
IsmaelApril 19, 2015 at 7:50 am in reply to: Photo galleries in blog aren't changing no matter what style I choose #430826Hey!
Attachment Page – it will link the image to the actual image or attachment page.
Media File – will open a lightbox or open the actual image url.
None – will remove image link.
Cheers!
IsmaelHey Luke86!
Thank you for using Enfold.
Go to Enfold > Shop Options then set the Header Shopping Cart Icon to the third option, attached to the main menu.
Cheers!
IsmaelHi Petpack!
Thank you for using Enfold.
Add this to the Quick CSS field to hide the cart when no product cart is empty:
@media only screen and (max-width: 767px) { .responsive #top .cart_dropdown { right: -100px !important; } .responsive.html_visible_cart #top .cart_dropdown { right: 7.5% !important; } }
Best regards,
IsmaelApril 19, 2015 at 7:28 am in reply to: How to prevent Custom Post Type from being treated like Blog Post #430822Hi!
Add the custom post type’s class selector:
.single-sfwd-courses .post-meta-infos { display: none; }
Regards,
IsmaelHi!
I’m sorry but it’s not possible to update the settings globally without editing the database. You can do an sql query like this:
The wp_postmeta is the table where the _product_hover meta key or the product hover settings is located. You need to set the meta_value to “hover_active”. Please create a backup of the database and the whole site before doing this.
Regards,
IsmaelHi Luke86!
Thank you for using Enfold.
You can try this plugin: https://wordpress.org/plugins/widget-logic/
Use the has_term conditional function: https://codex.wordpress.org/Function_Reference/has_term
Or the is_tax function: https://codex.wordpress.org/Function_Reference/is_tax
Best regards,
IsmaelHey!
Add this in the Quick CSS field:
div#full_slider_1, div#full_slider_1 > * { height: 500px !important; max-height: 500px !important; } div#full_slider_1 .slideshow_align_caption { position: relative; top: -80px; }
Use css media queries to change the height of the slider on different screen sizes. You can also turn on the custom css class attribute: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Best regards,
IsmaelHi!
Yes, it works on our installation. Please carefully follow the instructions provided here: http://www.electronmedia.in/wp/wordpress-post-pagination-nextpage-not-working
Cheers!
IsmaelHi!
Thank you for the screenshots. First, you need to update the theme to version 3.1.3 then add this to the Quick CSS field to adjust the position of the image element caption:
.av-image-caption-overlay-center { display: block; width: 50%; bottom: 20px; left: 20px; position: absolute; } .av-caption-image-overlay-bg { display: block; height: 30px; width: 50%; position: absolute; left: 20px; bottom: 20px; }
Cheers!
IsmaelHey yudkoren!
Thank you for using Enfold.
1.) Please refer to this link for a possible fix: https://kriesi.at/support/topic/rtl-sortedreverse-functions-problem/
2.) Give us a link to the actual page where you want to change the title.
Regards,
IsmaelHi!
Add this to the functions.php file:
add_filter('avf_title_args', 'avf_title_args_mod', 10, 2); // remove default title function avf_title_args_mod($args,$id) { $av_sidebar_menu = avia_sidebar_menu(false); $args['html'] = "<div class='{class} title_container'><div class='container'><{heading} class='main-title entry-title'>{title}</{heading}>{additions}{$av_sidebar_menu}</div></div>"; return $args; }
After that, add this to the Quick CSS field:
.title_container .widget_nav_menu { position: relative; } .title_container ul:first-child>.current-menu-item>a, .title_container ul:first-child>.current_page_item>a { padding: 3px 7px 7px 0; } #top .title_container .widget_nav_menu li { float: left; clear: none; margin: 0 5px; }
Style the menu as you want.
Cheers!
IsmaelHi!
This is the css code that breaks it:
.container { padding-right: 0px !important; }
Remove it from the Quick CSS field.
Cheers!
IsmaelHi Vincent!
Thank you for using Enfold.
Can you please provide a screenshot? Try to use the color section. Add a background.
Cheers!
IsmaelHey!
What you’re trying to do can’t be done without custom modification on the theme. Please hire a freelance developer to modify the page template. Anyway, you can try this in the Quick CSS field:
.container .av-content-small.units > div { background: gray; padding: 25px; left: -25px; position: relative; border: 1px solid; top: -25px; } aside.sidebar.sidebar_right.smartphones_sidebar_active.alpha.units { background: gray; left: 25px; position: relative; border: 1px solid; top: 25px; padding: 25px; } aside.sidebar.sidebar_right.smartphones_sidebar_active.alpha.units > div { left: -25px; position: relative; }
Best regards,
IsmaelHey!
Can you please provide a screenshot on how you want the logo to look inside the header? This should work:
strong.logo { height: 80%; top: 10%; }
Best regards,
IsmaelApril 19, 2015 at 4:31 am in reply to: Partner/Logo Element on mobile screen: 4 columns appearing as 2 x 2 #430803Hey richardbeatty!
Thank you for using Enfold.
I’m not sure if you have the latest version of the theme. Is the version 3.1.3? If not, please update it.
Cheers!
IsmaelHey!
@robinleung: Did you install any minify or cache plugins? And make sure that you have the latest version of the theme. Right now, the theme version is 3.0.4. Please update to 3.1.3.Best regards,
IsmaelHi!
Thank you for the info but the login credentials are not working. Please check.
Regards,
IsmaelHey!
Sorry about that. There’s a missing bracket right after the last line:
<?php
Replace it with:
<?php }
Make sure to replace the css codes in the Quick CSS field.
Regards,
IsmaelHey waveseven!
Thank you for using Enfold.
Create a button and add the url with the “psort” parameter using the portfolio category slug as the value.
http://www.mysite.com/myportfolio?psort=html
And then add this script in the functions.php file to trigger the sort button.
add_action('wp_footer', 'ava_auto_click'); function ava_auto_click() { if ( $_GET["psort"] == "html" ) { ?> <script> (function($){ $(window).load(function() { $('.html_sort_button').trigger('click'); }); })(jQuery); </script> <?php } }
Cheers!
IsmaelHey!
We can see the issue. You expect the same fixed toolbar behavior, like the default editor. I don’t think we can do anything about it this time. If you use the visual editor plugin from wpbakery you will see the same behavior in their text blocks, if I am not mistaken. For now, I’m afraid you will have to make do of the default toolbar behavior.
Cheers!
Ismael -
AuthorPosts