Viewing 30 results - 6,391 through 6,420 (of 7,495 total)
  • Author
    Search Results
  • #280881
    Jason E
    Participant

    After some searching, I was able to come across this article, which got me partially where I needed to go, but need help making a slight change to it…

    http://kriesi.at/documentation/enfold/how-to-add-an-orderorderby-option-to-the-blogpost-sliderportfoliomasonry-grid-element/

    In that function addendum, it adds the ability to sort by numerous criteria, but is missing one of the ones we need most: event date. How would adapt this function to allow sorting by event start date (from Modern Tribe’s plug-in)?

    #280736

    Hey ionutdumitru!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    @media only screen and (max-width: 989px) {
    .responsive .av_mobile_menu_tablet .main_menu, #top #menu-item-search { display: block; }
    .av-main-nav > li { display: none; }}

    Best regards,
    Yigit

    #280398

    In reply to: Remove search from nav

    Hey jazbird!

    Go to Enfold > Theme Options > Header Layout and click on the “Extra Elements” tab. Search for the “Append search icon to main menu” checkbox and deactivate it.

    Best regards,
    Peter

    #280355

    Hey!

    Thank you for the update.

    I’m sorry but there are no documentation about css. The support team handles basic custom modifications of the theme like the one you ask. In case you have any questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)

    Regards,
    Ismael

    #280257

    Topic: Enfold comments

    in forum Enfold
    ksdominant
    Participant

    Hi,

    The comments system is driving me up the wall! I just need to know 1 simple thing:

    Right now it says :4 Responses to “A quick guide to beans and peas” at the bottom of the page just above the comments with 4 comments displayed below that text.

    1. How can I stop it from displaying tat message (I did a search for the word “responses” in all of the theme files and couldn’t find it anywhere)
    I laso followed the instructions here: https://kriesi.at/support/topic/change-logo-link-in-enfold-remove-comment-counts-from-post-silder/
    And modified :

    if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio')
    						{
    							$link_add = $commentCount === "0" ? "#respond" : "#comments";
    							$text_add = $commentCount === "1" ? __('Comment', 'avia_framework' ) : __('Comments', 'avia_framework' );

    to

    //if ( $commentCount != "0" || comments_open($the_id) && $entry->post_type != 'portfolio')
    						{
    							//$link_add = $commentCount === "0" ? "#respond" : "#comments";
    							//$text_add = $commentCount === "1" ? __('Comment', 'avia_framework' ) : __('Comments', 'avia_framework' );
    
    #280092

    Topic: Widgets WILL NOT OPEN

    in forum Enfold
    BiggieDave
    Participant

    I began designing a site last week with Enfold. Created three footer widgets. I wanted to make changes to them this morning, and none of the widgets will open from the drop down arrow. Every single one is broken. This has been a long term problem with this theme based on my search through your support forums. In addition, the menu area is broken. I cannot drag the menu headings up or down to change the order in which they appear across my header.

    Very disappointed as I am wasting precious billable hours trying to figure this out. Please advise asap!

    #280046

    Hey Chrilles!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .search-no-results .search_not_found {
    display: none!important;
    }

    Best regards,
    Yigit

    #279448

    Topic: Enfold Shop site

    in forum Enfold
    Latinomics
    Participant
    #279257
    Pinkclaire
    Participant

    Hi,
    When I re-size my browser window or view web page in mobile, the mobile menu appears. (Great!)
    1-When i scroll down it disappears, what is the code for keeping it at the top right of my screen(aka floating/ sticky/fixed position?)

    I searched the forum for this but i did not find what i’m looking for.
    Thank you for the help!

    2-if i want it to float in the middle of my screen or at the bottom, what is the code?

    examples:
    https://cdn.tutsplus.com/net/uploads/legacy/018_Floating_Menu/demo/dhtml_float_menu_final_nettut.html

    #279230

    Hi nurdwurks!

    Thank you for using the theme.

    We actually prefer a single question on a single thread. Much easier for us to answer them on that manner. Also, it’ll be useful for other users asking for the same question.

    1.) You can remove the title with this on Quick CSS:

    h1.main-title.entry-title {
    display: none;
    }

    2.) Add this on functions.php:

    add_filter('avia_post_nav_entries', 'avia_apply_custom_sort_order_to_post_nav', 10, 2);
    function avia_apply_custom_sort_order_to_post_nav($entries, $settings)
    {
    	if(!empty($entries['prev'])) $temp = $entries['prev'];
    	if(!empty($entries['next'])) $entries['prev'] = $entries['next'];
    	if(!empty($temp)) $entries['next'] = $temp;
    	return $entries;
    }

    For the category filter, add this:

    function avf_same_category_navigation($settings) {
          if($settings['taxonomy'] == 'portfolio_entries')  $settings['is_fullwidth'] = true;
          return $settings;
      }
    
      add_filter('avia_post_nav_settings','avf_same_category_navigation', 10

    3.) Edit the search.php or the includes > loop-search.php.

    4.) Change the color of the ampersand with this on Quick CSS:

    .main_color .special_amp {
    color: red;
    }

    5.) Please refer to this link on how to fix permalink issues: http://codex.wordpress.org/Using_Permalinks#Fixing_Permalink_Problems

    6.) Change the iconlist background color with this:

    .main_color .avia-icon-list .iconlist_icon {
    background-color: red;
    }

    7.) We can set a specific width for the gallery but it might break the responsiveness of the element. Please select the thumbnail size on the Gallery Preview Image Size option.

    8.) Do you mind providing a screenshot of this pointer?

    9.) You can decrease the padding or adjust the width and height with this:

    .av_font_icon.av-icon-style-border .av-icon-char {
    width: 30px !important;
    height: 30px !important;
    padding: 10px;
    }

    10.) Use this to change the hover color of the icon and icon list elemen:

    #top .main_color .av-no-color.av-icon-style-border a.av-icon-char:hover {
    color: red;
    }
    
    .main_color .avia-icon-list .iconlist_icon:hover {
    background-color: blue;
    }

    11.) Edit the menu font on Enfold > Advanced Styling. Edit the Main Menu Link element.

    12.) You can use media queries to hide or remove the accordion slider for mobile device:

    @media only screen and (max-width: 767px) {
    .avia-accordion-slider-wrap {
    display: none;
    }
    }

    Before posting a question, please take some time to search on the forum or review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)

    Cheers!
    Ismael

    #278871
    nurdwurks
    Participant

    Hi Guys,

    Thanks for all the help and advice so far.

    Thought it would be better to lump a load of questions into 1 help thread rather than post them individually.

    1. Is it possible to hide the page title on the left when I select to show the bread crumbs?

    2. I have set up 4 different portfolio’s at the moment. When you are on the portfolio page there are tabs to the left and right of the page that take you to the next item. At the moment they work back to front, so the left tab takes you to the next item, and the right tab takes you the the previous item. Is there any way of changing this?

    Also with these portfolio tabs is there a way of setting them up so that they only cycle through the specific portfolio category that’s been selected. So if you have a portfolio that’s all videos then these tabs will only cycle through the video portfolio pages etc? At the moment I have 4 different portfolio galleries and the tabs allow the user to jump to a different portfolio which they may not want to see.

    3. How can I amend the search results page? I have looked through everything and I can’t seem to see how its possible. At the moment its displaying a standard enfold template and I would like to customise this as its displaying elements that I don’t want to feature on the search page.

    4. On special headings is there any way of preventing the “&” character from displaying in a different colour / font and italic?

    5. Portfolio pages come up as a 404 unless I change the permalinks structure – which means that the portfolio pages have SEO friendly urls but all other pages are changed to page id’s – is there a work around to ensure that all pages can feature SEO friendly URLS?

    6. Is there a way of changing the colour of the list icons to something other than the default grey?

    7. Is there a way of preventing the gallery from automatically scaling the images to fill the columns? I have a gallery of 2 images which I would like to have displayed centrally – however it stretches the images out to fill the the empty 2 columns. There is a selection to choose the image size but that appears to be overwritten by the theme to expand the images.

    8. A short while ago when I looked at the Enfold theme prior to purchase, the coloured selector that sits under the nav menu had a pointer on it which looks like its been removed. Is there a simple way of adding this? The basic line can sometimes look a little lost with the images that are going to be used in the main slider so this additional pointer should help it stand out.

    9. On the standalone icons – is there a way of changing the size of the ring that surrounds the Icon? At the moment you can tailor the icon size but the surrounding ring remains the same size. They are a little oversized and I would like to reduce them down a bit.

    10. Is it possible to set up a roll over colour for the list and standalone icons?

    11. Is it possible to change the font size and weight for the menu text?

    12. Where can I find the setting that turns the accordion slider on/off for mobile / tablet?

    Thanks

    James

    • This topic was modified 11 years, 9 months ago by nurdwurks.
    #278583

    In reply to: WPML .mo File?

    Hey heho!

    The default theme language is English (“hardcoded” text strings) and we didn’t include English mo/po files. If you want to generate them download and install 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 (English) and click on “Rescan” to search for all text strings. Afterwards click on “Edit” and translate the required strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).

    You can also use Poedit: http://poedit.net/ to generate a text file on your PC/Mac – the use Filezilla or another ftp client and upload the files into the wp-content/themes/enfold/lang/ folder.

    Cheers!
    Peter

    #278569

    Hey!

    It’s quite simple – just copy the files from your test server to the production server. Then you need to use a plugin which takes care of the serialized data – i.e. http://wordpress.org/plugins/wp-migrate-db/ or wp migrate pro – to export the database and to change the url. At least import the sql file you exported with the migrate plugin on your production server and point your domain to the production server/website folder.

    Isn’t that something you should WARN people about?
    Actually it’s a common practice to use serialized data to save complex data structures. Even wordpress uses serialized data for widgets and other elements and if the widget data contains absolute url paths you’ll also break it. We already created an article here: http://kriesi.at/documentation/enfold/move-from-a-local-installation-to-a-live-server/ but eventually it’s up to the user to read the documentation and to ask us for help before he manipulates the database data. Even if you use the migrate plugin you should make a database backup first – then you can restore the database and export the database again if something goes wrong.

    Is there a way to get back Quick CSS stuff at least?
    Maybe but I’m not sure. Your best best is to use phpmyadmin to search the database. Go to wp_options > avia_options_enfold and edit the data field. You should find your quick css code somewhere in the serialized data string (search for “quick_css”).

    Best regards,
    Peter

    #278529

    In reply to: 2 translation issues

    Hey!

    1) Enfold creates a separate option set for each language and you can also insert a different text into the “Phone Number or small info text” field. Just use the language switcher on the theme options page: http://www.clipular.com/c/4814465795096576.png?k=-YtyxOvCdOHRb062x21vy1EElkQ to switch the language and configure the option for each language (different logo, phone number text, etc.).

    2) Not sure why it’s not working – please create me an admin account and I’ll check if this is a theme issue.

    3) Afaik the sidebar widgets are not directly translatable. You can use Widget Logic or http://wordpress.org/plugins/display-widgets/ to show different widgets (which then display different menus) for different languages. Please refer to this article: http://wpml.org/2011/03/howto-display-different-widgets-per-language/

    4 + breadcrumb – you can translate all static text strings with Codestyling. Download and install the 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 and click on “Rescan” to search for all text strings. Afterwards click on “Edit” and translate the required strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).

    Best regards,
    Peter

    #278406
    ramansenvato
    Participant

    Hi,

    I am using the html code from Mailchimp, and pasting it in a code block in Enfold. The “subscribe” button is not showing up. I have searched on this forum and found many people with the same problem. I tried the solutions that worked for them, but their solutions are not working for me.

    In the Enfold code block, I have tried enabling checkboxes, etc, and have tried several different entries in the “Code Wrapper Element”. But nothing appears to have any affect.

    Cheers

    #278335
    FloppySocks
    Participant

    Hello! Sorry if this is a basic question, but I am fairly new to WordPress and the Enfold theme and am still figuring things out. First off, wanted to say I love the look of the theme so far and look forward to getting to know it better!

    My problem is that my website refuses to reflect any color changes made in the “Enfold Theme Options” under the General Stylings tab. I have searched the forum and have found other topics similar to this, but none of the solutions have worked. I tried resetting the default style and also cleared my cache. I have tried looking at the page on different computers and browsers as well. Other settings, such as selecting stretched or boxed width, do work, but anything involving color does not. Would like to get this sorted out, thanks!

    #278106

    Topic: Search page

    in forum Enfold
    smadesign
    Participant

    Can you pls inform me how i alter the seach page (if something isn`t found) it was the enfold tabs with comments at present which i like to remove. Thank you.

    #278102

    Topic: 2 translation issues

    in forum Enfold
    AturiMedia
    Participant

    Hi, I’m really impressed with the Enfold theme, thank you very much! I’m amazed that I have used it to set up a whole website without ever having to send a support request, that never happens with the other themes I use so you must be doing something right!!

    I am using WPML and have a few questions please. Both relate to http://www.patientdrugnews.com/ar/.

    * How can I translate the ‘Drug safety information in a language you can understand’ text that appears in the header? This is added in the ‘Phone Number or small info text’ field in the Enfold header settings.
    * I have created an Arabic slide for the Revolution Slider and have selected the correct slider on the Arabic homepage. Why does it say “No slides found, please add some slides”? (For info – I used the same slider with my previous theme and the Arabic slide was showing, and it’s only after switching to Enfold that it has vanished.)
    * The 3 footer widgets don’t have a ‘Multilingual’ tick box, how can I translate them?
    * How do I translate the ‘Search’ watermark that appears in the search widget, and also the search in the header?

    Many thanks

    Many thanks

    jnhaswell
    Participant

    Hey Everyone,

    I’ve been asked by my client to remove the search magnifying glass that is standard with the Enfold theme (that opens the pop-up AJAX search box below it) and instead just have a regular search box right in it’s place. I’m assuming this isn’t too difficult, but after a couple of hours of searching and sifting through the code, I figured maybe someone else could point me in the right direction?

    Here is the link to their site: http://instaglucose-com.web10.prepropagate.com

    Thanks for the help as always everyone!
    – John

    #277368

    Hi rhysbowen!

    Thank you for using the theme!

    1.) That is the gallery shortcode inside a 2/3 column layout. The side contents are text block and accordion element. You can see the same thing if you import the dummy data. :)

    2.) The link http://nbpromos.com/new-polos/ takes me to a 404 page. In case you want to know, the demo with the gallery uses images with 988x642px dimension. You can use larger images, the theme automatically crops them and use different thumbnail sizes on different parts of the theme.

    3.) You can change the body color on Enfold > General Styling. Look for the Main Content and Alternate Content tabs. Depends on the element that you want to change, you can use Quick CSS to add css modifications on the theme.

    4.) If you want to remove the title and breadcrumbs, go to Enfold > Header Layout > Header layout. Disable the option on Header Title and Breadcrumbs setting.

    In case you have any questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)

    Regards,
    Ismael

    #277173
    sobemarketing
    Participant

    Hello

    I recently found out that my website with Enfold theme making mysterious pages indexed on Google Search engines.

    Can you please tell mw what caused this issue and error?
    Attached you find the error of pages that get indexed by error?

    Google search: site:pengeportalen.com

    Results:

    Index of /wp-content/themes/enfold/config-layerslider
    pengeportalen.com/wp-content/themes/enfold/config-layerslider/
    Index of /wp-content/themes/enfold/config-layerslider. Parent Directory .DS_Store · LayerSlider/ · config.php · update.txt. Apache Server at pengeportalen.com …
    Index of /wp-content/themes/enfold/framework/css
    pengeportalen.com/wp-content/themes/enfold/framework/css/
    Index of /wp-content/themes/enfold/framework/css. Parent Directory .DS_Store · avia_admin.css · avia_colorpicker.css · avia_sidebar.css · conditional_load/.
    Index of /wp-content/themes/enfold/framework/images
    pengeportalen.com/wp-content/themes/enfold/framework/images/
    Index of /wp-content/themes/enfold/framework/images. Parent Directory . DS_Store · colorpicker/ · icons/ · layout/. Apache Server at pengeportalen.com Port 80.
    Index of /wp-content/themes/enfold/framework/images/icons
    pengeportalen.com/wp-content/themes/enfold/framework/…/icons/
    Index of /wp-content/themes/enfold/framework/images/icons. Parent Directory . DS_Store · accept.png · add.png · alert.png · bin_closed.png · blog.png …
    Index of /wp-content/themes/enfold/framework/images/layout
    pengeportalen.com/wp-content/themes/enfold/framework/…/layout/
    Index of /wp-content/themes/enfold/framework/images/layout. Parent Directory · FIND_API.jpg · arrow.png · bg-bottom-shadow.png · bg-button.png …

    #276778
    tgolas
    Participant

    Hello – I’ve used Enfold to create a one-page site that works great – with anchor links and sections that scroll up and down – as long as I don’t leave the page. I’ve also included the search tool in the nav bar. If a visitor does a search, the nav items no longer work from the search results page. I’m sure you’ve addressed this, but I haven’t been able to find the answer. Will you tell me how to make the scrolling-anchor-linked navigation work regardless of whether the visitor is on the main page or a search-result-generated page?

    Many thanks for a fantastic theme.

    Good Afternoon,
    Thanks for great Tech support.

    This is a 2 part question. As per prior support answer:
    ———————
    https://kriesi.at/support/topic/change-layout-prettyphoto/#post-173889
    Enfold\js\prettyPhoto\js folder and open jquery.prettyPhoto.js file. Search “theme” and find http://i.imgur.com/VKAoooU.jpg
    and change “pp_default” with “dark_square”.
    Regards,
    Yigit
    ————-

    Is there a way to edit or call a replacement jquery.prettyPhoto.js file in a child theme such as the child theme attached?

    Also I just downloaded this child theme and it has a lot of existing function calls?

    The child theme I currently run was from last year and came with a blank function file which was used for styling only. I have added few simple functions but nothing referencing similar functions to this sample.

    Is this updated child theme a better version to work from (just without the dequeue / register scripts related to the question above for fancybox?

    Warm regards

    Paul

    Mudfish488
    Participant

    Hi guys,

    Apologies for sending a post on a topic that appears to be asked quite often. I’ve read many of the previous posts and corresponding answers, but haven’t quite been able to get it working the way I want.

    I’m trying to figure out the relationship between the product image size settings in WooCommerce/Settings/Products, the Enfold image size settings in the config.php (config-woocommerce/config.php) and editing the container wrapper topic I’ve read about on here as well.

    This is my understanding, but please feel free to confirm or correct me if I’m wrong.
    WooCommerce/Settings/Products – the image sizes in here control the resolution of the image displayed. Therefore if I set the catalog image size here to 240×360, that is the resolution of the thumbnail it creates from my original image. However, this doesn’t control the way that thumbnail image is displayed.

    config-woocommerce/config.php – this image setting controls the size of the image as it is displayed. So if using my example above, if I set the catalog image to 300 x 450, the image would be fuzzy as it’s enlarging a 240×360 image to fit 300 x 450 right? But if I set it to 240×360, in theory the image should look sharp and clear correct?

    Here’s where my issue comes in. I’ve tried changing both the woocommerce settings and the woocommerce config.php settings to a size smaller than what the default was, but the image is still showing up larger than I want. I’m guessing this is due to the container wrapper used in the product grid correct? If so, how would I change this to be smaller? I saw a post or two on the container wrapper already but it seemed way above my abilities so if you have a more visual example or simple instructions, that would be great!

    I did try switching from 3 columns to 4 columns and that helped, but not quite down to the size I want. Also, I would prefer to have 3 columns and just more space between them or keep the extra space on the right. Here are the sizes/format I’m hoping for.

    Grid: 3 columns wide
    Product catalog images: 240×360
    Single product image: 300×450

    Can you help me achieve this? Thanks so much!!!

    Bobby

    Bonus question: How can I get rid of the search results in the catalog grid? Right now, it shows “No products found which match your selection.” and then displays my products. Thx!!

    #276352

    In reply to: Problem With Images

    Hi!

    Glad it is working now. :)

    Let us know if you still experience the issue in the fuure. In case you have any questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.

    If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)

    Best regards,
    Ismael

    #276319

    In reply to: Form Styling

    Hi!

    1- Please add following code to Quick CSS in Enfold theme options under General Styling tab

    input#mc4wp_email { width: 30% !important; float: left; margin-right: 10px !important; }

    2- Please add a Code Block element above your images and add following code inside it

    <form action="http://www.savelolly.com/" id="searchform" method="get" class=""><div> <input type="submit" value="" id="searchsubmit" class="button avia-font-entypo-fontello"> <input type="text" id="s" name="s" value="" placeholder="Search"></div></form>

    Then you can turn on custom CSS field for ALB elements and add a custom class to your Code Block element, i.e. “custom-search-form” and add following code to Quick CSS in Enfold theme options under General Styling tab to adjust it

    .custom-search-form input#s { padding: 20px 80px 20px 20px !important; }

    Best regards,
    Yigit

    leoncool
    Participant

    Hello

    I have installed both Enfold and WPML, but now I have some problem configuring the language selector.

    As you seen the picture and the website below:
    problem
    http://www.justinwestcapital.com/en/

    There are two language selectors in header. I want to keep the left one which I know where to configure it. However, I can’t find anywhere to disable the selector on the rightmost language selector.

    Can someone please advice?

    Thanks

    #275802
    #275587
    KirstenMac
    Participant

    Hi,

    It seems my Enfold installation has the menu underline function deactivated by default for some reason. Can someone please tell me how to turn it on? I’ve searched the other posts and they’re all about altering the colour / position etc., but mine just isn’t appearing to begin with.

    #275543

    Hi batesunited!

    Just create an “includes” folder in your child theme directory and copy the modified loop-search.php into this folder – i.e. the file path should look like: wp-content/themes/enfold/includes/loop-search.php

    If you want to remove the excerpt delete this code located in loop-search.php:

    
    
                <?php
                    echo '<div class="entry-content" '.avia_markup_helper(array('context' => 'entry_content','echo'=>false)).'>';
                    $excerpt = trim(get_the_excerpt());
                    if(!empty($excerpt))
                    {
                        the_excerpt();
                    }
                    else
                    {
                        $excerpt = strip_shortcodes( get_the_content() );
                        $excerpt = apply_filters('the_excerpt', $excerpt);
                        $excerpt = str_replace(']]>', ']]>', $excerpt);
                        echo $excerpt;
                    }
                    echo '</div>';
                ?>
    

    If you want to remove the sidebar add this code into the child theme functions.php file:

    
    add_action('wp_head','avia_remove_search_sidebar', 10);
    
    function avia_remove_search_sidebar()
    {
    			global $avia_config;
    			$result = "fullsize";
    			$avia_config['layout']['current'] = $avia_config['layout'][$result];
    			$avia_config['layout']['current']['main'] = $result;
    }
    

    Best regards,
    Peter

Viewing 30 results - 6,391 through 6,420 (of 7,495 total)