Forum Replies Created

Viewing 30 posts - 571 through 600 (of 8,514 total)
  • Author
    Posts
  • in reply to: Overwrite Language file in Child theme folder #312448
    in reply to: Theme customizations not shown with Child theme #312356

    Glad we could help :)

    in reply to: Standalone icon layout #312355

    Yes, you would need to give that section an ID or custom class name and then target the containers within just for mobile. For the docs home page for example I would use:

    
    /*
    Mobile Styles
    ================================================== */
    /* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */
    
    @media only screen and (max-width: 767px) {
      #home-icons .flex_column.av_one_fifth {
      width: 50% !important;
      }
    }
    
    
    in reply to: Theme customizations not shown with Child theme #312343

    WordPress has a number of functions that determine what will be used in a child theme instead of the parent. Anything that is called using the get_template_part function from a theme file for instance will look for the file being requested in the child theme first.

    For the ALB elements (postslider.php) you need to use a function to tell Enfold that the child theme has a folder to check before looking in the parent since WordPress alone doesn’t know about the themes custom stuff.

    For the translation file it looks like you need to add the file in your child theme root directory and then tell WordPress about it via a function: http://codex.wordpress.org/Function_Reference/load_child_theme_textdomain

    in reply to: ManageWP compatible with Enfold? #312339

    Hi corly!

    I don’t see why it wouldn’t be though I don’t think any of us in support have ever tested ManageWP directly. For me, I update things manually when/if they are needed. I’ve always tried not to get to a point where I am personally managing so many sites that I need a solution like either of the above :)

    Regards,
    Devin

    in reply to: Portfolio / enable custom fields in child theme #312338

    Hi Fritz!

    In this case no since the post type function isn’t set up to be replaced via a child theme.

    Regards,
    Devin

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

    Hey ucvsb!

    Is this is a plugin function or something else? What is it supposed to be doing (front end, back end etc)?

    The theme saves the avia layout builder into a custom field separate from the TinyMCE field and then displays that data using the template builder template and not the regular page.php file.

    So it depends on what is getting checked for hidden vs public etc.

    Cheers!
    Devin

    in reply to: Header – why is it so difficult ? #312332

    Hey!

    Lets try to break down what you are looking to do a bit more. From the sound of it there are a few that are beyond what the theme options cover and you would need custom css to further customize things.

    What is the actual url of the site so we can take a look at what you have now live and inspect the code a bit?

    Regards,
    Devin

    in reply to: Adding form from "createsend.com" to Enfold (Textbox) #312331

    Glad you were able to find a fix :)

    in reply to: Theme customizations not shown with Child theme #312330

    Hi!

    The loop-index file should be replaced automatically as long as its the same name and in the same folder in your child theme. Its being called by the get_template_part function which is already child theme friendly for *I think* every instance in the parent.

    Regards,
    Devin

    in reply to: Portfolio Ajax Preview #311864

    It sounds like you previously used a function in your functions.php file to limit the next/previous to the same category. By default the theme doesn’t do that.

    Eg something like this which keeps the category limited:

    
    add_filter('avia_post_nav_settings','avia_remove_fullwidth_slider_check', 10, 1);
    function avia_remove_fullwidth_slider_check($settings)
    {
    $settings['same_category'] = true;
    return $settings;
    }
    
    in reply to: Portfolio items: Error 404 not found #311858

    Hi!

    There shouldn’t be any need to do that since the rewrite rules only need to be properly generated once and then once in a while if WordPress somehow messes up the htaccess but not every time you make a save.

    You can try deactivating all active plugins in case there is one that is causing a conflict but I’ve not run across any instance where the permalink structure is continually in need of a refresh.

    Regards,
    Devin

    in reply to: iPhone Rotation issue #311856

    Hey!

    Re: plugin, not any other way that I know of unfortunately. You could try another plugin and do the images manually that you specifically want to alter: http://wordpress.org/extend/plugins/simple-image-sizes/

    iPhone rotation: The only reason it wouldn’t be resizing is if the site width isn’t changing. So if there has been any other changes with minification, caching, new css or a new plugin you could try clearing/undoing it to find the source of the change.

    Best regards,
    Devin

    in reply to: Standalone icon layout #311855

    Hey Effektid!

    There isn’t any customization option for the border effect at the moment no.

    In general though using the 1/5 column is how I would do it and actually have done it that way on the documentation site: http://kriesi.at/documentation/enfold/

    Cheers!
    Devin

    in reply to: Accordion slider #311636

    Hey Jarnis82!

    Right now you have #top .aviaccordion-title { font-size: 20px; } in your quick css to make the titles bigger but removing that the font size is identical to the demo (14px).

    Best regards,
    Devin

    in reply to: A couple of questions #311635

    Hi Effektid!

    1) Its a masonry gallery from the avia layout builder.

    2) Those are icons with the border option.

    3) The text is open sans on the demo.

    4) Definitely though it depends on where exactly for the best way to do that. If its on an auto generated content area then it needs to be picked out with your browsers dev tools. If its with the layout builder then you can add a custom class to the element and style it there.

    5) Do you have an example we can see?

    Best regards,
    Devin

    in reply to: How To Make Site Width 960 pixels? #311634

    Hi goforyourdreams!

    The only way to do that right now would be to re-build the css files to work with that width. With the next big theme update there will be some additional new options for the widths but that isn’t for another few weeks.

    Best regards,
    Devin

    Hey benbuckley!

    The best resource I can point you to at the moment for looking at memberships is http://chrislema.com/best-wordpress-membership-plugin-2014/

    Hope that helps :)

    Regards,
    Devin

    in reply to: All portfolio items redirect to 404 page? #311428

    Hey aybekdes!

    Go to your WordPress settings>Permalinks and then set the option to default. After saving test your portfolio pages and see if they show up correctly.

    If they do, make sure that you have the portfolio slug names set to names that are not used *anywhere* else on the site for any other pages slug. WordPress will not work when pages have the same slug.

    If even with the default settings (portfolio, portfolio-item) its not working with custom permalinks set then you would need to try the permalink troubleshooting options mentioned on the WordPress codex here: http://codex.wordpress.org/Using_Permalinks#Fixing_Permalink_Problems

    Best regards,
    Devin

    in reply to: Child functions.php Not Overriding Parent functions.php #311427

    Hi!

    Using the plugin I mentioned above is by far the best option. Its ridiculously easy to edit and regenerate from the admin and since you need to install at least one plugin to regenerate thumbnails you might as well install the one that also lets you edit images.

    This is even more valid in your case since you want to play around with sizes and this plugin lets you do that per image: http://wordpress.org/extend/plugins/simple-image-sizes/

    Best regards,
    Devin

    in reply to: **Urgent** Anchor Links to Interior pages not working #311426

    Hey Slade!

    Refresh any cache you have in your local browser or view the site in incognito. When viewing your site right now and going to a contact us link from an internal page which goes to #additional-info I’m getting put at the correct anchor inside the page exactly as I would expect.

    Cheers!
    Devin

    in reply to: How to hide header only? #311099

    Hi launchmoxie!

    The blank template has a variable to tell the header and footer to be hidden. So you would need to clear out the variable from the blank template to empty before calling the footer within that loop.

    Best regards,
    Devin

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

    Hi blizzmarketing!

    The template builder doesn’t use the regular page content so I doesn’t sound like the loop_start would be triggered. I’ve never actually seen the loop_start used so I had to look it up and even then not much documentation.

    If you want something to run at the very top of the page you could hook it onto the header or look at the template-builder.php file and add your own action to a child theme which would then run where you want it.

    Best regards,
    Devin

    in reply to: modern Lightbox update has broken my PrettyPhoto #311059

    Hey khedrubje!

    You can continue to use PrettyPhoto as a plugin with no issues as long as you disable the built in version from the theme options.

    Regards,
    Devin

    in reply to: unable to delete dummy content #311058

    @hillaren – The menu was not set up correctly though with a regular import it should be. I went ahead added in a new simple menu however which should be a good base to get you started anyway.

    in reply to: Email Social Share Button #311024

    Hey Heathcliffe!

    Is it the gmail app? The mailto link on a post doesn’t even have that span in it so I don’t know where it could be coming from :)

    Best regards,
    Devin

    in reply to: Issue wih Internet Explore and other Browser #311021

    Hi palmalorenzo!

    Can you explain a bit more what the issues are and how we could reproduce them? The way you have the site set up right now is exactly how it should be.

    With the “responsive” settings of the site the menu is designed to switch to the mobile menu when it gets to a mobile or tablet size (depending on your header options). If you want a fixed width site you can choose that from the theme options so that the menu doesn’t change.

    Regards,
    Devin

    in reply to: Slug overwritting #311016
    This reply has been marked as private.
    in reply to: Posts #311010

    Hey Wils1234!

    Do you have an example of what you mean or maybe a mock up? The social options are pretty set without editing the files directly but we’ll see if we can assist.

    Regards,
    Devin

    in reply to: Portfolio Ajax Preview #311008

    Hey!

    I’m not quite sure what you mean but this is the demo for what the ajax portfolio can do: http://kriesi.at/themes/enfold/portfolio/portfolio-ajax/

    It has not changed since its release :)

    Regards,
    Devin

Viewing 30 posts - 571 through 600 (of 8,514 total)