Forum Replies Created

Viewing 30 posts - 45,601 through 45,630 (of 66,126 total)
  • Author
    Posts
  • in reply to: Sort portfolio from a to z #503818

    Hey!

    Oh OK. I didn’t notice your second post. Did you set the blog style to grid? If that is the case, use this code:

    function custom_post_grid_query( $query, $params ) {
        $query['orderby'] = 'title';
        $query['order'] = 'ASC';
        return $query;
      }
      add_filter( 'avia_post_slide_query', 'custom_post_grid_query', 10, 2);

    If you use blog style other than grid, you can follow the solution here: http://kriesi.at/documentation/enfold/change-the-sort-order-of-blog-posts-elements/

    EDIT: Add conditional functions (example above: is_tax) if you want the filter to work for specific categories only.

    Regards,
    Ismael

    in reply to: avia button is not working on mobile #503217

    Hey!

    Great! Glad we could help. :)

    Regards,
    Ismael

    in reply to: Sort portfolio from a to z #503206

    Hey!

    This should work:

    add_action( 'pre_get_posts', 'pre_get_posts_portfolio' );
    
    function pre_get_posts_portfolio( $query )
    {	
    	
    	if( $query->is_main_query() && is_tax( 'portfolio_entries', array(40, 42) ) ) {
    		$query->set('orderby', array('meta_value' => 'ASC', 'title' => 'ASC'));
    	}
        return $query;
    }

    Adjust the id 40 and 42 to the id of the portfolio categories in your installation.

    Regards,
    Ismael

    in reply to: Archive Category Page Sort Order #503185

    Hi endoradigital!

    Thank you for using Enfold.

    You can change the query by using this filter on functions.php file:

    add_filter('avia_blog_post_query', 'avia_blog_post_query_mod');
    
    function avia_blog_post_query_mod( $query ) {
    $query['orderby'] = 'title';
    $query['order'] = 'DESC';
    return $query;
    }

    Refer to this link for more order and orderby parameters: https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters

    Best regards,
    Ismael

    in reply to: Sorting category links missing on portfolio page #503183

    Hi ist007!

    Thank you for using Enfold.

    Please provide the link to the actual portfolio page, we would like to check it. Make sure that you have the latest version of the theme, 3.3.2.

    Regards,
    Ismael

    in reply to: Custom font #503181

    Hi Alex!

    Thank you for using Enfold.

    1.) The filter is designated for google fonts only. You don’t need to use it in this case. Do the “Open Sans Local” font exists?

    2.) If you use the font face rule, you can automatically apply the font on different elements in the theme via Quick CSS or css > custom.css file. Example:

    body {
    font-family: 'Open Sans Local';
    }

    http://www.w3schools.com/cssref/css3_pr_font-face_rule.asp

    Best regards,
    Ismael

    in reply to: Bug using Invisible Header (visible on scroll) and anchor links #503179

    Hi reisp!

    Thank you for using Enfold.

    There is no anchor links when I checked the page. Did you remove it? All menu items point to external pages.

    Best regards,
    Ismael

    in reply to: Side nav displays below the page content on product grid page #503176

    Hi Edna!

    Thank you for using Enfold.

    I checked the page but it doesn’t exist. Please create a test page then we’ll check it.

    Regards,
    Ismael

    in reply to: Upcoming Events Plugin #503166

    Hey dialedinmarketing!

    Thank you for using Enfold.

    You need to modify the config-templatebuilder > avia-shortcodes > events_upcoming.php file if you want to add a description or excerpt. Look for this code around line 150:

    $output .= apply_filters('avf_upcoming_event_extra_data', "", $entry);
    

    Below, you can add the excerpt code. Refer to this link for more info:

    https://codex.wordpress.org/Function_Reference/get_the_excerpt
    https://codex.wordpress.org/Function_Reference/get_the_content

    Regarding the thumbnail, add this in the functions.php file:

    add_action( 'after_setup_theme', 'ava_image_sizes', 11 );
    function ava_image_sizes() { 
    add_image_size('square', 845, 321, array('center', 'top'));
    }
    

    Adjust the width (845) and height (321) value. Regenerate or upload the images after.

    Best regards,
    Ismael

    in reply to: Masonry Gallery Spacing #503162

    Hi!

    Edit the color section containing the masonry element then look for the Section ID field. Apply a unique id, example “custom-section”. Add something like this in the Quick CSS field:

    #custom-section .container, #custom-section .container .template-page {
        padding: 0;
        margin: 0;
    }

    Best regards,
    Ismael

    in reply to: Margin – Mobile View #503160

    Hi!

    Can you please provide a link to the actual post with the social icons? I checked a few posts but I don’t see the social icons. Did you install a third party plugin for the social icons?

    Best regards,
    Ismael

    in reply to: Legal use of Google Maps? #503159

    Hi Manuel!

    Thank you for using Enfold.

    I’m sorry but what do you mean by “Google is a little bit special with this”? I think it will help if you review the google maps/google earth’s terms of service: https://developers.google.com/maps/terms?hl=en#7-permitted-uses

    We’ll ask Kriesi to check this thread. For more info, please contact google.

    Regards,
    Ismael

    Hey!

    I’m sorry but I’m not sure I understand your inquiry. I think you’re talking about a different issue based on the screenshots. Can you please elaborate? For further modifications, please visit codeable: http://kriesi.at/contact/customization

    Cheers!
    Ismael

    in reply to: Pricing table – getting equal height rows #503155

    Hey!

    I tried to edit the page but it’s blocked because you’re online or editing the page yourself. Please try to add this in a code block before or after the table:

    #top .avia_pricing_minimal .pricing-table>li:nth-child(n+2) {
        min-height: 289px !important;
    }
    
    #top .avia_pricing_minimal .pricing-table>li:last-child {
        min-height: 100px !important;
    }

    You need to add css media queries to adjust the height on smaller screens.

    Cheers!
    Ismael

    in reply to: align customer comment #503149

    Hey!

    Please add this in the Quick CSS field:

    #top .av-large-testimonial-slider .avia-testimonial-meta .avia-testimonial-image {;
        margin: 0 auto !important;
        float: none;
    }

    Regards,
    Ismael

    in reply to: Enfold Popup windows #503147

    Hey!

    You can register the item’s purchase code here: https://kriesi.at/support/register/

    Best regards,
    Ismael

    in reply to: background image just on desktop #503145

    Hi Saritedri!

    Thank you for using Enfold.

    How did you apply the background? Please provide a link to the actual page. You can use css media queries to alter the style on different screen sizes. https://responsivedesign.is/develop/browser-feature-support/media-queries-for-common-device-breakpoints

    Best regards,
    Ismael

    in reply to: displaying categories in a page #503144

    Hey Saritedri!

    Thank you for using Enfold.

    Can you please provide a screenshot or an example of what you have in mind? If you want to create a page with a list of portfolio categories, try the Image element separated by column layouts. Set the link manually to the individual portfolio category pages.

    Use the Portfolio Grid element in order to create different portfolio category pages.

    Best regards,
    Ismael

    in reply to: Sitck header #503143

    Hi!

    Thank you for the info. You can try the “.header-scrolled” selector. Example:

    .header-scrolled .logo { // STYLE HERE }
    

    Regards,
    Ismael

    in reply to: permissions on dynamic_avia directory #503141

    Hi babayard!

    Thank you for using Enfold.

    I’m sorry to hear this. Please change the site’s passwords every now and then. What do you mean by “updates to theme may also change permissions…”? 755 value should work for automatic theme updates. If not, you can update the theme via FTP.

    Cheers!
    Ismael

    in reply to: Fluid grid #503140

    Hey!

    Thank you for using Enfold.

    You can add a color section or full width easy slider at the top then add a grid row element below. However, you can’t specify the height of the elements base on window height. It will require a few custom jquery scripts. Please visit codeable: http://kriesi.at/contact/customization

    Regards,
    Ismael

    in reply to: Can't update Widgets/Add Media #503139

    Hi larsy87!

    Thank you for using Enfold.

    The site is probably using a very old version of the theme. Please update the theme to the latest version, 3.3.2. Unfortunately, we can’t help you trace back the modifications made on the theme. Please use a child theme or create a change log of the script changes and modified files.

    Regards,
    Ismael

    in reply to: Grid row automatic window size based height #503138

    Hi!

    Can you please provide a screenshot of the layout you’re after? The script should apply the height of the window screen minus the height of the header and title container. I added the code on function.php and it works OK.

    Best regards,
    Ismael

    in reply to: Place an image betwen the top of page and the header #503134

    Hi!

    The code looks good. You can find the id when you edit the page. Inspect the url in the browser’s web address area, you’ll see something like this:

    http://yoursite.com/wp-admin/post.php?post=226&action=edit
    

    The “post=226” part of the url is the page id. Please post the login details here. We will add an example for you.

    Regards,
    Ismael

    in reply to: How to leave a reply to comments on a blog post #502505

    Hey!

    I’m not logged in when I post the comment. Check the link above. Look for “Test”. Regarding the notification, there is no default option for that so you will have to use a plugin like this: https://wordpress.org/plugins/send-email-only-on-reply-to-my-comment/

    EDIT: I can see the issue now. Please use this in the Quick CSS field:

    .comment-respond .required {
        display: none !important;
    }
    
    .comment-respond label:after {
        content: ' *';
    }

    Regards,
    Ismael

    in reply to: avia button is not working on mobile #502503

    Hey!

    1.) Yes, that is possible. Please provide the embedded url.

    2.) We will report this issue to Kriesi. It seems to be an issue on mobile devices with retina displays. Rest assured that the buttons will work on other mobile devices.

    EDIT: Please try to add this code in the Quick CSS field to fix the button:

    .avia_mobile #top .av-parallax { position: absolute !important; }
    

    Remove browser cache then reload the page.

    Cheers!
    Ismael

    in reply to: Height of the container #502501

    Hey!

    The code is not working because the > is converted to its html entity. Please copy the code directly from the forum, not from your email. We fixed the code for you. Remove browser cache then reload the page.

    Cheers!
    Ismael

    Hi!

    The sidebar is hidden when I checked the page. Maybe, you’re referring to the gap next to the main content. Add this in the Quick CSS field:

    .single-portfolio .container .av-content-small.units {
        width: 100%;
    }

    Regards,
    Ismael

    in reply to: WPML flag modified layout #502499

    Hi!

    I’m sorry but I didn’t see any flags when I visited the page. Please activate it then we’ll provide a possible fix. Try to reposition the language switcher with this:

    @media only screen and (max-width: 767px) {
    .avia_wpml_language_switch {
        position: absolute;
        top: 0;
        right: 20px;
    }
    }

    Cheers!
    Ismael

    in reply to: My account ICON #502497

    Hi!

    You can replace the action hook “ava_after_main_menu” with “avia_meta_header”. It will render the account icon inside the “top bar” instead of the “main menu container”.

    Cheers!
    Ismael

Viewing 30 posts - 45,601 through 45,630 (of 66,126 total)