Using debug mode allows me to see the shortcode. I have used it many times now to save my butt. The client has asked for updates to the page. The only way I can do it is through the debug box. If I try editing above, all the content goes away. I’ve tried deactivating plugins. I did a complete clean install of WordPress, no plugins, installed Enfold and then setup the debug code. I went to original site, copied the shortcodes, and then pasted them in on a fresh page and hit update. I view the page and it looks right. Then go back and click a text box and edit some text. There is an Advanced Layer slider at the top, then a Special Heading. Everything below the Special Heading gets wiped out on update.
I have programmers that do custom work for me and they have looked at it and cannot see what is wrong. Is there anything anyone can do? I’m about to lose this client. They are pretty upset that they can’t edit this page. Out of the whole site, this is really the only page that will be getting updated on a regular basis.
Help!
Thanks
-Fred
Hey!
Maybe you need to add the extended-latin subset. Add this code to the child theme functions.php or enfold/functions.php:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
function avia_add_heading_font($fonts)
{
$fonts['PT Sans'] = 'PT Sans:400&subset=latin,latin-ext';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['PT Sans'] = 'PT Sans:400&subset=latin,latin-ext';
return $fonts;
}
and replace PT Sans with your google font. Maybe you also need to adjust the font weight (400) and the subset value. Note that not all fonts support latin extenhded. Afterwards save the functions.php file and go to Enfold > Theme Options and re-save the theme settings.
Best regards,
Peter
Hi Ismael,
looks good so far!
Just the cart page has still the white font. (Put something in there and you will see.)
As well as the comment font color in a single product.
And on a single product page, under the product there is “Ähnliche Produkte” . How to change this color?
…i made the sidebar go away over the enfold settings. But i did not find any layout–>sidebar settings in the product page. Do you have e screenshot of where this setting is?
Thanks!!
Simon
-
This reply was modified 11 years, 7 months ago by
simonac.
Hey simonac!
Thank you for using the theme!
1.) You can disable the sidebar for single product page by editing the product. Look for Layout > Sidebar Setting. Choose the widget area with no widgets applied. Another thing that you can do is to disable the sidebar on Enfold > Sidebar Layout > Sidebar on Single Post Pages. Choose “no sidebar”.
2.) The products tabs are still not working. Try to change the product description color with this:
div#tab-description p {
color: red;
}
3.) Do you prefer the transparent background? If not, you can use this:
.main_color .inner_product div.avia_cart_buttons {
opacity: 1;
}
#top .main_color .avia_cart_buttons .button {
color: black;
}
Cheers!
Ismael
Hello, im using enfold, i need to know how to add css styles that affect just the ipad vertical view. Do i need an external plugin? enfold can handle it itself? please i need your advice, im in a rush with this project.
Thanks.
Hey!
Thank you for the update.
I don’t think there is any sorting plugin that integrates well with the portfolio items without major modification. Regretfully, this task falls beyond the scope of support. You might need to find a plugin or hire a freelance developer to add the feature for you. Please visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.
Best regards,
Ismael
Hey NoahCurran!
Thank you for using the theme!
You can enable the Header Title and Breadcrumbs option on Enfold > Header Layout > Header layout panel. This will add a title container on top of the archive page.
Best regards,
Ismael
Hey!
Thank you for the update.
I’m sorry but there are no documentation about css. The support team handles basic custom modifications of the theme like the one you ask. In case you have any questions, please take some time to review all of the resources in the Theme Documentation as a lot of basic stuff like theme installation, css snippets etc are already available in there with better explanation and awesomeness. Watch some of our Video Tutorials to learn more about the different aspect of the theme. You can also search the forums for queries that has been answered before that might be related to your problem.
If you find that you still have questions after taking the time on our documentations, don’t hesitate to let us know and we will be happy to assist you. If you have any requests or you feel like giving us a warm hug? You can definitely post it on our Feature Requests page. :)
Regards,
Ismael
This reply has been marked as private.
This reply has been marked as private.
Thank you.
And if I did want to change the default page template in my child theme would I need to copy page.php or index.php from the enfold page template files?
It’s my homepage I’d want to clone
Hey Amir!
Make sure the first part of the code is put correctly (don’t copy it from the mail message):
.sort_by_cat a > span {
padding: 4px 6px;
display: inline-block;
}
http://gator3130.hostgator.com/~elites/wp-content/uploads/dynamic_avia/enfold.css?ver=1
Cheers!
Josue
Hi,
Have you tried using the Enfold Google Maps element?
Please note that making third-party plugins compatible with the theme is beyond the support scope we offer.
Regards,
Josuei
Hi Josue,
I double-checked and we don’t have any enfold theme files outside of enfold and enfold-child. We do have the basic WP themes that come with install in the root of the default WP themes directory (i.e. twentyfourteen, twentythirteen, and twentytwelve). Can you think of any other reason we’re getting this error?
Thanks,
Joseph
Hi,
The comments system is driving me up the wall! I just need to know 1 simple thing:
Right now it says :4 Responses to “A quick guide to beans and peas” at the bottom of the page just above the comments with 4 comments displayed below that text.
1. How can I stop it from displaying tat message (I did a search for the word “responses” in all of the theme files and couldn’t find it anywhere)
I laso followed the instructions here: https://kriesi.at/support/topic/change-logo-link-in-enfold-remove-comment-counts-from-post-silder/
And modified :
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' );
to
//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' );
I am a new Enfold user, and new to css coding as well. I am developing a website that needs to have the menu bar run the full width of the screen even though the menu elements don’t fill that width.
Hey Joseph!
Make sure you don’t have any theme files outside of /wp-content/themes/enfold.
Best regards,
Josue
Hey mschoonhoven!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.logo {
pointer-events: none;
}
Cheers!
Yigit
Hey Elizabeth!
It simply displays the avatar of post author next to the post on blog page as shown in this example – http://kriesi.at/themes/enfold/blog/blog-multi-author/
You can add Blog Posts element to your page and choose Multi Author as a Blog Style and if you would like to make it your default blog style, you can select it in Enfold theme options > Blog Layout > Blog Style.
You can find Enfold documentation here – http://kriesi.at/documentation/enfold/
Best regards,
Yigit
Hi processblue!
You can add following code to Quick CSS in Enfold theme options under General Styling tab to make the background transparent
.av-inner-masonry {
background-color: transparent;
}
Regards,
Yigit
Hi!
You would like to move Full Name closer to Phone Number, is that correct? If this is not what you wanted, please elaborate.
Code does not seem to apply currently. Can you try adding it to custom.css file inside Enfold/Css folder?
Regards,
Yigit
Hey jolesch!
Kriesi uses 1700x470px on LayerSlider background images on the homepage of Enfold demo site
Regards,
Yigit
Hi rlaucello1!
Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed
.av-magazine-thumbnail { width: 80px; }
Regards,
Yigit
Hi dalboslampen!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.page-id-3360 #av_section_1 .inner-entry {
box-shadow: none!important;
background: transparent!important;
}
More solid solution would be turning on custom CSS field for ALB elements – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and using custom classes.
In that case, you can simply use
.custom-class-example .inner-entry {
box-shadow: none!important;
background: transparent!important;
}
Cheers!
Yigit
Hi 1456932587!
Please create a new page and add following shortcode
[bbp-forum-index]
then go to Enfold theme options and choose the page you created in Frontpage Settings.
I can see login widget just fine – http://i.imgur.com/nbHafkU.png
You can edit the page you created and choose not to display title bar – http://i.imgur.com/EdaOoXP.png
Regards,
Yigit
I just upgrade the Enfold theme today and now, even though the LayerSlider still shows perfectly in the “preview” it is trashed on the site. Almost no images come into any slide. This is a disaster! Both LayerSliders are completely dysfunctional.
http://www.prismcareernetworks.com/prism_wordpress/candidates/
Hey!
You can suggest this feature here: https://kriesi.at/support/enfold-feature-requests/ and if a lot of other users vote for it we’ll look into it.
Regards,
Peter
Hey!
You can turn on custom CSS field for ALB elements – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
and have each text block element with different font sizes
Regards,
Yigit
How can an alphabetical index of all post titles in selected categories be created? There doesn’t seem to be a plugin and the WordPress short code doesn’t seem to work in the Enfold theme. Maybe you know something I don’t know? How can this be accomplished?
Using the following embed code from Vimeo.. which works in a browser but not in the file
<iframe src=”//player.vimeo.com/video/98157099″ width=”712″ height=”401″ frameborder=”0″ webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
This is our site: http://l2l.ca
Thanks
jw