Forum Replies Created
-
AuthorPosts
-
Hey originaltours!
See: http://codex.wordpress.org/Function_Reference/load_child_theme_textdomain
Best regards,
DevinGlad we could help :)
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; } }
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
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,
DevinHi Fritz!
In this case no since the post type function isn’t set up to be replaced via a child theme.
Regards,
DevinSeptember 2, 2014 at 3:19 pm in reply to: issue with avia editor and user-access-manager (uam) #312335Hey 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!
DevinHey!
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,
DevinSeptember 2, 2014 at 3:14 pm in reply to: Adding form from "createsend.com" to Enfold (Textbox) #312331Glad you were able to find a fix :)
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,
DevinIt 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; }
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,
DevinHey!
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,
DevinHey 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!
DevinHey 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,
DevinHi 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,
DevinHi 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,
DevinAugust 31, 2014 at 4:32 am in reply to: Enfold – membership / customer account / login questions #311429Hey 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,
DevinHey 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,
DevinAugust 31, 2014 at 4:26 am in reply to: Child functions.php Not Overriding Parent functions.php #311427Hi!
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,
DevinAugust 31, 2014 at 4:24 am in reply to: **Urgent** Anchor Links to Interior pages not working #311426Hey 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!
DevinHi 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,
DevinAugust 29, 2014 at 10:29 pm in reply to: loop_start hook for pages that use Advanced Layout Builder? #311097Hi 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,
DevinHey 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@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.
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,
DevinHi 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,
DevinThis reply has been marked as private.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,
DevinHey!
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 -
AuthorPosts