Forum Replies Created
-
AuthorPosts
-
Hey!
You can add something like this in a text widget:
<select onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value);"> <option value="">Select...</option> <option value="http://yousite.com/donation-1">Donation Page 1</option> <option value="http://yousite.com/donation-2">Donation Page 2</option> <option value="http://yousite.com/donation-3">Donation Page 3</option> <option value="http://yousite.com/donation-4">Donation Page 4</option> </select>
Cheers!
IsmaelHey scubasnsi!
Thank you for using Enfold.
It is possible to remove certain elements in the comment form but, unfortunately, you can’t separate the comment list and comment forms. Use this to remove the elements:
span.minitext, .comment-form-url { display: none; }
Regards,
IsmaelHi!
Yes, it is possible but it will require major code rewrite. You need to modify the config-templatebuilder > avia-shortcodes > portfolio.php file and then add custom css modifications. Look for this code:
$extraClass .= ' default_av_fullwidth '; $output .= "<div data-ajax-id='{$the_id}' class=' grid-entry flex_column isotope-item all_sort {$style_class} {$post_class} {$sort_class} {$grid} {$extraClass}'>"; $output .= "<article class='main_color inner-entry' ".avia_markup_helper(array('context' => 'entry','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)).">"; $output .= apply_filters('avf_portfolio_extra', "", $entry); $output .= "<".$link_markup[0]." data-rel='grid-".avia_post_grid::$grid."' class='grid-image avia-hover-fx'>".$custom_overlay.get_the_post_thumbnail( $the_id, $image_size, $image_attrs )."</".$link_markup[1].">"; $output .= !empty($title) || !empty($excerpt) ? "<div class='grid-content'><div class='avia-arrow'></div>" : ''; if(!empty($title)) { $markup = avia_markup_helper(array('context' => 'entry_title','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)); $output .= '<header class="entry-content-header">'; $output .= "<h3 class='grid-entry-title entry-title' $markup>"; if(!empty($title_link)) { $output .= "<a href='{$title_link}' title='".esc_attr(strip_tags($title))."'>".$title."</a>"; } else { $output .= "".$title.""; } $output .= '</h3></header>'; } $output .= !empty($excerpt) ? "<div class='grid-entry-excerpt entry-content' ".avia_markup_helper(array('context'=>'entry_content','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)).">".$excerpt."</div>" : ''; $output .= !empty($title) || !empty($excerpt) ? "</div>" : ''; $output .= '<footer class="entry-footer"></footer>'; $output .= "</article>"; $output .= "</div>";
You can re-arrange the elements.
Best regards,
IsmaelHey!
1.) Use this to fix the overlap issue:
@media only screen and (max-width: 989px) { .av-main-nav > li > a { padding: 0 7px; font-size: 12px; }}
2.) Add this to display the social icons on smaller screens:
@media only screen and (max-width: 767px) { .responsive #header .main_menu .social_bookmarks { display: block; position: absolute; }}
Cheers!
IsmaelHi!
You can try this in the Quick CSS field:
.av_secondary_right .container:before { content: ''; background-color: blue; width: 300px; height: 32px; display: block; position: absolute; right: 0; }
Remove the background of the header meta container. If this is not what you’re looking for, a screenshot will help.
Best regards,
IsmaelHey!
I’m sorry but the avia_post_nav function is based on the get_previous_post and get_next_post functions which only retrieves adjacent posts. WordPress posts are designed to display in reverse chronological order (from newest to oldest) which means that the function can only fetch entries base on date the post was created. If you want to fetch the post by title, you will need to modify the avia_post_nav in the functions-enfold.php file. Please hire a freelance developer or contact codeable: http://kriesi.at/contact/customization
Best regards,
IsmaelHey mikehartrich!
Thank you for using Enfold.
The blog post element should only display posts and exclude pages or other post types. Please post the login details here so that we can check it.
Best regards,
IsmaelHey Lissasan!
Thank you for using Enfold.
Please add this in the functions.php file:
add_filter( 'ava_main_header', 'avia_append_search_nav_mod', 10); function avia_append_search_nav_mod() { ob_start(); get_search_form(); $form = htmlspecialchars(ob_get_clean()) ; $items = '<div id="menu-item-search-mod" class="menu-item-search-mod menu-item menu-item-search-dropdown"> <a href="?s=" rel="nofollow" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span></a> </div>'; echo $items; }
Use this in the Quick CSS field to adjust the position of the search icon.
#menu-item-search-mod { position: absolute; right: 50px; z-index: 6000; }
Cheers!
IsmaelHi tcoach84!
Thank you for using Enfold.
Please use this plugin to translate the text or strings: https://wordpress.org/plugins/loco-translate/
Best regards,
IsmaelAugust 24, 2015 at 3:04 am in reply to: Remove layout elements per user role or all layout elements for user role #491981Hey!
I think you forgot the url to the website. Please post it here. Try to replace the code with this:
add_filter('admin_head', 'avf_builder_button_params_mod', 10, 1); function avf_builder_button_params_mod($params) { $user = wp_get_current_user(); if ( in_array( 'administrator', (array) $user->roles ) ) { echo '<style type="text/css">#avia_builder{display: none !important;}'; } }
Cheers!
IsmaelHey!
@vonweizen: Please create a new thread. Post the website url and the login details there. Make sure that you have the latest version of WordPress and the theme.
Best regards,
IsmaelHey!
The masonry element is using the isotope script which calculates the position of the masonry items dynamically. I’m afraid, it’s not possible to control the height of the items without breaking the script. The width and height of the masonry items will depend on the number of columns and the current width of the main container.
Best regards,
IsmaelAugust 24, 2015 at 2:42 am in reply to: Socket social icons to work like social share buttons? #491978Hi Ramin!
Thank you for using Enfold.
I’m sorry but it’s not possible without major modification on the theme. You need to find a social share plugin. Try the following:
https://wordpress.org/plugins/addthis/
https://wordpress.org/plugins/simple-share-buttons-adder/You can modify the footer.php file if necessary.
Regards,
IsmaelHi!
If the color section is identical then you can use the same css class attribute.The website is on maintenance mode. Please post the login details here.
Best regards,
IsmaelAugust 24, 2015 at 2:37 am in reply to: How to activate the scrolling effect in ONE PAGE mode? #491975Hi!
First, you need to edit the page then modify the table element. Remove this html code:
<span style=”color: #000000;”></span>
Add the code in Enfold > General Styling > Quick CSS field to change the color of the font to “red”. You can find the Quick CSS field at the bottom.
Regards,
IsmaelHi!
Please post the url of the website here. You can try this code in order to decrease the left padding:
.av-main-nav > li > a { padding: 0 13px 0 6px; }
Regards,
IsmaelAugust 24, 2015 at 2:19 am in reply to: Updated Enfold to latest version (19th Aug 2015) & video not playing on mobiles #491970Hi!
Videos added on sliders are disabled on mobile devices by default. That’s why you need to add a fall back image.
Best regards,
IsmaelHey!
If you want to modify the order of the objects in the portfolio grid, you can modify the config-templatebuilder > avia-shortcodes > portfolio.php file. Please hire a freelance developer to re-arrange the script.
Best regards,
IsmaelAugust 24, 2015 at 2:01 am in reply to: Problems after Update to Enfold 3.3 with list-styles in tabs #491965Hey Biggy!
Thank you for using Enfold.
Kriesi is currently working on a fix and it should be release in the next few days.
Best regards,
IsmaelHey!
I checked the home page and the slider is fully responsive. Did you fix it?
Best regards,
IsmaelAugust 24, 2015 at 1:41 am in reply to: single product page sidebar to right instead of below that won't break on mobile #491962Hey!
I’m very sorry for the delay. A few of the modifications should be done directly in the parent theme files. If you can give us the ftp details, we will add the modifications for you.
Best regards,
IsmaelAugust 24, 2015 at 1:39 am in reply to: Remove Current Portfolio Post from related portfolio grid Enfold #491961Hey!
Did you try the code above?
function ava_exclude_portfolio($query) { $query->set( 'offset', '1' ); } add_action('pre_get_posts', 'ava_exclude_portfolio');
Cheers!
IsmaelHey!
Alright. This should work:
@media only screen and (max-width: 989px) { .custom-cell { padding: 20px !important; }}
If the iPad has a retina display, please use this css media query: https://css-tricks.com/snippets/css/retina-display-media-query/
Best regards,
IsmaelAugust 24, 2015 at 1:31 am in reply to: Hide Woocommerce product type and term from showing up in post meta #491959Hey!
@senso: Sorry for the delay. Please provide a link to the actual blog page.
Cheers!
IsmaelHey!
The height of the image should be more than 100px. Please use images with the same size and ratio. Make sure that the height is more than 100px. The best thing to do is to create a blank canvas. Attach the logo image there before you upload it into WordPress.
Regards,
IsmaelHey!
I tried to login to the site but the login credentials above is not working. Please check. Make sure that you’re using the correct selector when modifying a certain element.
Best regards,
IsmaelAugust 18, 2015 at 5:50 am in reply to: Mega Menu Sub-Sub Menu to toggle click to open/close #489269Hi!
I’m sorry but the mega menu doesn’t have that option by default. You will have to modify the mega menu script in order to create a toggle. Please hire a freelance developer or you can contact codeable: http://kriesi.at/contact/customization
Cheers!
IsmaelHi!
Can you please provide a screenshot of what you’re trying to do? I visited the site and there’s a huge gap after the logo. And if I scroll down, the logo relocated from center to the left. Was that intentional?
Best regards,
Ismael -
AuthorPosts