Forum Replies Created
-
AuthorPosts
-
Hi Antonio!
I’m seeing a misconfigured ssl error when visiting the site: https://casateulada.com/
Cheers!
DevinHey 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,
DevinYou would need to contact the plugin developer to see what it would take to turn on that meta box for custom post types.
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!
DevinHi Effektid!
No, there isn’t any sizing option for it at the moment.
Regards,
DevinHey!
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,
DevinHey 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,
DevinHey 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!
DevinIf 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.
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.
September 3, 2014 at 2:11 pm in reply to: If editing postslider.php file do I put a copy in child theme? #312866The 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.
Hi!
We would need to log in and take a look at your installation as well.
Cheers!
DevinIt 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.
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,
DevinHi 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,
DevinHi blizzmarketing!
No that isn’t currently possible unfortunately.
Regards,
DevinHey 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,
DevinSeptember 3, 2014 at 3:54 am in reply to: If editing postslider.php file do I put a copy in child theme? #312608Here 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
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.
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,
DevinSeptember 3, 2014 at 3:44 am in reply to: If editing postslider.php file do I put a copy in child theme? #312604You 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.
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,
DevinHi 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!
DevinHi 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,
DevinHi 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!
DevinHey 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!
DevinHi!
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!
DevinSeptember 3, 2014 at 3:30 am in reply to: If editing postslider.php file do I put a copy in child theme? #312593Hi 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.
Cheers!
DevinSeptember 2, 2014 at 9:39 pm in reply to: loop_start hook for pages that use Advanced Layout Builder? #312499Add the template-builder file to your child theme and then add a hook or function call wherever you’d like it.
September 2, 2014 at 6:15 pm in reply to: issue with avia editor and user-access-manager (uam) #312456Unfortunately 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.
-
AuthorPosts