Forum Replies Created

Viewing 30 posts - 541 through 570 (of 8,514 total)
  • Author
    Posts
  • in reply to: SSL and Enfold? #312904

    Hi Antonio!

    I’m seeing a misconfigured ssl error when visiting the site: https://casateulada.com/

    Cheers!
    Devin

    in reply to: Creating left sidebar on internal pages #312902

    Hey webdevsd!

    I’m not quite sure what you mean. If you want a sidebar you only need to choose that option from the Layout meta box for that page. The meta box is on the right side of the page editor when editing a page.

    Regards,
    Devin

    in reply to: Modify "Portfolio Items" admin/edit page #312899

    You would need to contact the plugin developer to see what it would take to turn on that meta box for custom post types.

    in reply to: Firefox issue's with Enfold #312897

    Hi glen!

    What version of Firefox specifically? I don’t see any mentions of FF issues on our bug tracker and have not run across anything at the moment either.

    Cheers!
    Devin

    in reply to: Question about Masonry #312895

    Hi Effektid!

    No, there isn’t any sizing option for it at the moment.

    Regards,
    Devin

    in reply to: Enfold 2.9.2 not working with WordPress 3.9 #312894

    Hey!

    Try deactivating all active plugins and then going to the theme options>General Styling. Make any change there and then save the options. That should regenerate the css file so that the theme is correctly styled. If it still looks the same way you’ll need to make sure your WordPress uploads folder is writable by the server so that the theme can create the dynamic css file to style everything correctly.

    Typically your hosting provider can assist in making the chmod change needed.

    Regards,
    Devin

    in reply to: prettyPhoto / avia.js Issue #312890

    Hey ernst86913!

    PrettyPhoto was removed in the last feature update of the theme so if there are any files or functions calling for it they are outdated.

    If you have any caching plugins installed on either WordPress or the server make sure to clear their cach completely. Then do a re-install//re-upload of the theme files so that everything is up to date and the new lightbox script is being referenced and used.

    Regards,
    Devin

    in reply to: Child theme – Settings are not working #312888

    Hey Snerp!

    Make sure that your WordPress installations uploads folder can be written to and that the new child themes dynamic css file has writable permission set on it as well.

    When you save the styling options the theme writes to the uploads/dynamic_avia/enfold.css file and with a child theme it would be uploads/dynamic_ava/child-theme-name.css file. If that file isn’t there or if it doesn’t have server permissions that allow WordPress to write to it then the css can’t be updated or Quick CSS added to it.

    Cheers!
    Devin

    in reply to: Standalone icon layout #312887

    If they are two rows then the second row is getting a clear on it. If you have a link to the page we can take a look.

    in reply to: Center Two Buttons on Fullscreen Slider #312880

    Hi djshortkut!

    Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    
     @media only screen and (max-width: 480px) {
      .avia-multi-slideshow-button.avia-slideshow-button{ margin-right:0px; }
      .avia-multi-slideshow-button.avia-slideshow-button-2{margin-left:0px;}
    }
    

    Regards,
    Devin

    • This reply was modified 10 years, 2 months ago by Devin.

    The function you add to your child theme functions.php file tells the theme where to look to find replacement theme files. Without editing it, the function points to the shortcodes folder: https://github.com/DevinVinson/enfold-child-starter/blob/master/functions.php#L27

    If you don’t want the slide meta to show at all you would delete the entire div. This isn’t a theme usage issue at this point as you are customizing php files. We don’t typically break down this kind of thing into step by step directions because of how many variables there are in what anyone could be or want to do and that its very easy to make a mistake when you are editing a file.

    With php if you are missing a single ; or . it can cause the whole site to whitescreen. Even editing the file without a plain text editor could cause issues.

    For you, you want to remove the whole meta block output I think so:

    
    $output .= "<div class='slide-meta'>";
    						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' );
    
    							$output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>";
    						}
                            $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));
    						$output .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>";
    						$output .= "</div>";
    

    If not then you would be deleting the specific bit inside of there that you want to remove.

    in reply to: Layerslider kill my sidebar #312856

    Hi!

    We would need to log in and take a look at your installation as well.

    Cheers!
    Devin

    in reply to: Debugging message #312855

    It should be less than 10 minutes to do an update. I do the whole thing in the video on that page in the documentation and its the easiest way to ensure all the files on your server are up to date and there are no errors within the theme files that could be causing any issues.

    in reply to: Re-Installation of the Sitemap-Widget? #312853

    Hi wolfganghessmuc!

    We don’t have a sitemap widget with the theme so it would need to be reactivated by a plugin which I imagine is where it was/came from before.

    Best regards,
    Devin

    in reply to: Debugging message #312822

    Hi gianmarizzi!

    Try doing a quick reinstall of the theme files either from the WordPress dashboard or over FTP. See: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Regards,
    Devin

    in reply to: Update an ALB template after it's been created? #312610

    Hi blizzmarketing!

    No that isn’t currently possible unfortunately.

    Regards,
    Devin

    in reply to: incorporate a bootstrap page? #312609

    Hey tgdigitalsolutions!

    Probably not :(

    I *love* working with Bootstrap but there are going to be conflicts which you’ll need to resolve one way or another. So it would be less time consuming I would guess to copy over the raw HTML into a code element and then re-style it with css that doesn’t conflict with any theme rules.

    You could *try* adding the code for it into a code element and then enqueing bootstrap but it’ll be a gamble on what/any conflicts might pop up.

    You could also try using the themes pricing table too: http://kriesi.at/themes/enfold/shortcodes/pricing-and-data-tables/

    Regards,
    Devin

    Here is an example: https://github.com/DevinVinson/enfold-child-docs

    That is the same child theme I used on the documentation site and I’ve edited the magazine element to use the last updated date instead of the published date.

    You could also clone or fork this child theme where I have things set up already: https://github.com/DevinVinson/enfold-child-starter

    in reply to: Accordion slider #312607

    Try updating your theme files to the most recent release and see if that helps. The settings appear to be the same (except for your font size change) but it could have been something that changed in the 2.9, 2.9.1 or 2.9.2 updates.

    in reply to: List of shortcodes with usage, please. #312605

    Hi!

    Not with anything I know of no. There are no individual post display shortcodes within the theme but there is probably something like that available as a plugin.

    Best regards,
    Devin

    You would copy the file to your child theme’s shortcode folder and then open it up, search for the slide-meta and delete that div.

    in reply to: Portfolio Grid Issues #312602

    Hi djshortkut!

    1) This is white space the browser adds in and we are not able to edit it.

    2) Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    
    h3.grid-entry-title.entry-title {
        text-align: center;
        color: #fff !important;
        background: #000;
    }
    .grid-entry.isotope-item .grid-content {
        background: #000;
    }
    

    Regards,
    Devin

    in reply to: Modify "Portfolio Items" admin/edit page #312600

    Hi darneson!

    I’m not familiar with the plugin(?) but check the Screen Options tab at the top of the portfolio edit page to see if that meta box is available to be displayed.

    If it isn’t you would need to contact the author of the plugin on how to have it show on custom post types.

    Cheers!
    Devin

    in reply to: Confused About Accordion Slider #312598

    Hi Scott!

    Once you’ve added the slideshow element to your layout you can click on it to edit it. Then click on each image (after inserting them) to edit the data/link for each. See: https://vimeo.com/channels/aviathemes/92506240

    Best regards,
    Devin

    in reply to: Media Gallery NOT working #312597

    Hi Stevers146!

    The login data isn’t working for me but in general you can try deactivating all active plugins in case there are any conflicts with one.

    If you can double check the admin credentials we can try logging in and taking a look live.

    Cheers!
    Devin

    in reply to: Zend Desk intergration (Zendesk for WordPress) #312595

    Hey mrwerner!

    The plugin would do the integration I believe but not with the themes form. By itself the form doesn’t have much configuration for things beyond a form that will email a specific email address.

    Other plugins that are dedicated to forms would be your best choice in this case.

    Cheers!
    Devin

    in reply to: How to insert "read more" into my page. #312594

    Hi!

    You could do it with a plugin or custom code but it isn’t something we have any plans for at the moment to add to the theme.

    Cheers!
    Devin

    Hi siestajoye!

    Enfold is just like any other WordPress theme and using a child theme. To replace an element from the layout builder in a child theme however you need to use a function to tell the theme you are doing that.

    See: http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/

    Cheers!
    Devin

    in reply to: loop_start hook for pages that use Advanced Layout Builder? #312499

    Add the template-builder file to your child theme and then add a hook or function call wherever you’d like it.

    in reply to: issue with avia editor and user-access-manager (uam) #312456

    Unfortunately we aren’t able to debug third party plugins unless they are already a officially supported plugin.

    In this case you could try posting to the plugins support forums on WordPress.org but it doesn’t look like it has been active in some time.

    There are quite a few user restricted plugins out there so I would suggest trying a different one or to try checking with the author on where the trigger/check is for a page to be restricted.

Viewing 30 posts - 541 through 570 (of 8,514 total)