This reply has been marked as private.
Josue & Ismael,
I’ve installed the WP Open Graph plugin. Customized the settings. And tested a post to see what is coming through. I’m getting this using the Object Debugger for Facebook (Please note, all fields have a value except the Image field). My question is basically, what’s the problem here? I’ve used three plugins, yoast, protocol, and the open graph, and nothing is working. If your’s works then something in my settings is off. I need guidance to figure out how to fix. I just have no idea where to go from here. Thanks so much for your time.
Based on the raw tags, we constructed the following Open Graph properties
fb:admins Array of length: 1
⍾ 1597440475
fb:app_id 718037448250634
og:url http://www.faithfamilylifeandotherthings.org/
og:type website
og:title Faith, Family Life & Other Things
og:locale en_us
og:image
og:description Mentoring Women. Inspiring Hearts. Loving Jesus.
og:site_name Faith, Family Life & Other Things
og:updated_time 1414440955
Hi,
is there a way to change the input colors in form fields?
I asked this question some time ago and got this quick css code as an answer:
.page-id-51391 .avia_ajax_form input, .page-id-51391 .avia_ajax_form select{
color: #000000 !important;
}
Works nicely on all fields – except for the large text input field, where the color is still gray instead of black:
http://blog.datenschmutz.net/kontakt/
I also wonder if it’s possible to change this setting for *all* forms (instead of using the page IDs).
Hello,
I am using Pods Framework to create and manage a CPT called Destinos. I am using 5 custom fields and has archive is set as true. I am using the WordPress Categories to organize my CPT:
London > Museums > My CPT, but in the Breadcrumbs the parent cattegory doesn’t appears, instead, the Custom Page that I am using to display my latest post is linked and the parent URL is the archive page of my CPT.
I’ve tried to modify the class-breadcrumbs.php following this topic: https://kriesi.at/support/topic/breadcrumbs-with-custom-post_types/ but it doesn’t work.
Dear Josue,
Thanks for pointing the right place for modification. I use page template check and following codes work for me.
//overwrite with custom fields if they are set
$post_id = avia_get_the_id();
if ( is_page_template( 'template-gsir.php' ) ) $settings['header_shrinking'] = 'av_header_shrinking_disabled';
Many thanks!
Zaw Zaw
Hi!
Thank you for the update.
You can’t use php codes inside the code block element and shortcodes are not recommended as you can see on the note:
Enter some text/code. You can also add plugin shortcodes here. (Adding theme shortcodes is not recommended though)
The get_field function is not a native theme function. Did you get this from advance custom fields plugin? Please contact the plugin author regarding the issue. I’m sorry but we don’t provide support for third party plugins.
Regards,
Ismael
Dear Enfold Team,
is it possible that when customer goes to cart the checkbox of “delivery to other address” is unchecked. So that these delivery to other address fields by default do not appear. They only should appear, when customer clicks on the checkbox.
Another question would be. In the address mask, is it possible to remove the field “Appartment” as our fulfiller DHL does not use this field.
Thanks!
Rgds
Andreas
Hi addwebtoday!
Thank you for using Enfold.
Please check the page’s Layout > Title Bar Settings. You can also change that option via Custom Fields. Look for header_title_bar then set the value to title_bar_breadcrumb.
Regards,
Ismael
Hi Zaw Zaw,
Open /enfold/functions-enfold.php and look for this lines:
//overwrite with custom fields if they are set
$post_id = avia_get_the_id();
Replace them by this:
//overwrite with custom fields if they are set
$post_id = avia_get_the_id();
if($post_id == 3847) $settings['header_shrinking'] = 'av_header_shrinking_disabled';
You can also put the whole modified avia_header_setting function in your child theme functions.php file.
Regards,
Josue
Hi,
I would like to upload content and setup layout / categories … setting using CSV file, using WP All Import Plugin. Basically, I’m trying to setup all the settings using spreadsheet (so that I don’t miss anything), and then use WPAI to import those settings. WPAI will then dynamically set everything up for me based on my preference in the CSV files. However, I found some fields that I can’t be updated using WPAI plugin.
A while ago I contacted WPAI support to help me setup the parent / child relationship of each page, that can’t automatically be setup using CSV; and they offer me a code (in functions.php) to get around that limitation. Basically what I had to do was to create a custom field, and then use the code below so that the plugin can automatically map the custom field with the “parent” field.
Could you please help me modify the following code, so that it can work with some other fields in the portfolio page? Thank you :)
So, here’s the code:
add_action('pmxi_saved_post', 'set_parent_page', 10, 1);
function set_parent_page($pid){
$page = get_post($pid);
if ( ! empty($page) ){
$parent_page = get_post_meta($pid, '_tmp_parent_value', true);
if ( ! is_numeric($parent_page) ){
$parent = get_page_by_title($parent_page);
if (! empty($parent)){
$parent_page = $parent->ID;
}
}
if ( is_numeric($parent_page) ){
wp_update_post(array(
'ID' => $page->ID,
'post_parent' => $parent_page
));
}
delete_post_meta($pid, '_tmp_parent_value');
}
}
In the example above, I have to create a custom field called “_tmp_parent_value”.
What I want to automatically setup in the portfolio item, are the following:
1. Tags
2. Portfolio Categories
3. Layout (Select the desired Page layout)
4. Sidebar Setting (Choose a custom sidebar for this entry)
5. Title Bar Settings (Display the Title Bar with Page Title and Breadcrumb Navigation?)
6. Footer Settings (Display the footer widgets?)
7. Breadcrumb parent page (Select a parent page for this entry. If no page is selected the them will use session data to build the breadcrumb.)
Thanks again :)
Great I didn’ t see your answer.
It is a good idea, but how do i modify the contact form.
Cause the form was not to send email.
Pkus how can i modify the form itself, i would like to be able to customize it more, abd add regex for the fields and javascript.
Thank you for your help.
It is really appreciated.
Regards.
No,
the page you see is printed out from different custom fields. It’s not built with the visual composer
I can’t use the visual composer (and save a template with that) for 2 reason:
1 – if in the future I want to change the layout I will have to manually change all the 100+ entries.
2 – This content is user generated and I don’t want the users to fiddle around with the visual composer. It’s much easier for them to just fill in the custom fields.
If you can tell me if there is some js I can include in the page to have the proper “switch to accordion” with the tabs built with the html structure instead of the shortcode, it woul be really great :-) (refer to the original post to see exactly what the problem is)
Thank you!
best :-)
Thank you very much! When you get a chance can you take a look at that same page. I have added another form field toward the top of the page using Ninja Forms. It may allow us to customize the fields more easily but there appears to be an issue removing the additional space below the form elements. Any tips on how to get the spacing closer to the way it is in the lower Color Section?
I’ve had a plugin created that allows me to add custom type posts to the site, they are not posts or pages but I would like to know how I can get the side social buttons to appear on these as they to in normal posts. Is this possible?
Thanks
Hey!
You can add html codes on the Fullwidth Easy Slider caption fields. So adding the logo is possible. Hide comment meta info with this on Quick CSS or custom.css:
.slide-meta-comments, .slide-meta-del {
display: none !important;
}
Best regards,
Ismael
This reply has been marked as private.
Meta fields are saved right along side the post data in the database. See: http://codex.wordpress.org/Custom_Fields
In the themes case, its a whole bunch of shortcodes. You can actually turn on a field to see them with this function: http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
So while you have Enfold active the data will get pulled from that field in the database.
Hi!
I want to display posts from my blog in my Homepage, but I just want the title and a custom field. I need to find the “Avia layout blog posts” *.php to add the “custom field code”.
Can you tell me where to find it?
Thanks!
Hi Ismael,
this code didn´t work because the product tabs div is overlapping the whole page now. I found another solution which is working for me with a data table and custom fields instead. The div is overlapping the whole item-loop div too but it is a solution which I can live with…
The only problem is that the data table div isn´t after the item-loop and the sidebar which will cause problems if the item-div is too high so that the text in the item-loop div and the data-table div might overlap because they both come right after the breadcrumps div… This problems are caused because I´m working with Yigits code which puts the item image, the item-loop and the sidebar in different divs (to show a sidebar on single product pages). I´m thinking about a solution of closing out all divs of the shop-loop and then hook in the data table but the divs are opened in too many files and I would have to comment them out and close them before the function of the data table. Well, I´m going to use my solution now and thank you for your support :)
Regards, Tobias
Hi!
Did you enable the Responsive mode option on the Slider Settings? Also, please fill up the Responsive Under and Layers Container fields. Also, edit the text graphic layers then go to the Attributes panel. Apply a custom css Classes. Use this to modify the position and size of the element using css media queries.
Regards,
Ismael
Hi!
The first important things I need to know before continue the debugging are:
1) With custom post type is it possibile to use Advanced Layer Slider?
2) Are there some avia shortcodes that are not working in a custom post type or custom fields like a textarea?
thanks a lot!
Yigit – It works perfectly when I edit the theme file, but I want to make sure I do this on the child theme folder (more peace of mind for me if there is a theme update).
I also want to include some custom fields I’ve added to my posts in the “magazine” display; IN the loop it works perfectly – I’ve been using this code:
get_post_meta( get_the_ID(), 'Written By', true );
I wanted to add it as anotherr variable in the render_entry function like:
$writtenBy = get_post_meta( get_the_ID(), 'Written By', true );
and then in the output like this:
$output .= $writtenBy;
But I’m not getting any results.
Am I going about this the right way? Thanks again.
-
This reply was modified 11 years, 6 months ago by
frescova.
Hey crispics!
I’m not quite sure what you mean from the description. What is the issue with using the form fields as is right now? Is something not working or are you looking to customize how the form elements works?
Cheers!
Devin
I want to add and display a couple of custom fields with the post meta; I want to add “Written By” and “Publication”
It’s easy enough to do in the post edit screen, but how do I get them to display int he single entry and post list pages?
Thanks in advance.
hi!
I already found the solution to enable custom fields for portfolio items.
https://kriesi.at/support/topic/portfolio-items-custom-fields/
Is there an option to do this in functions.php of a child theme as well?
(Don’t like to modify something which will be replaced on updates).
Many thanks. Fritz
Hello Support,
I have created a couple of customizations in loop-index.php and postslider.php to show my custom fields. Following the advice of support I have created a child theme and took the latest version of the theme as parent… I’ve redone the modifications on the latest theme files and saved them in a same name directory in the child theme folder.
Somehow the parent files are not overwritten by the child theme. What am I doing wrong? Please see this image where I show the differences.
https://imageshack.com/i/ipXnuWSwp
I’ve set back the site to my modified theme. If you would like to see it live in action, please let me know, I will enable the child theme.
Thanks in advance!
-
This topic was modified 11 years, 6 months ago by
originaltours. Reason: Image link added
Hi,
The color section element is full width. I would like it to be part of the natural flow like the elements above and below it. Can you help me with this?

I’ve added an id and class in the color sections options by adding your code to the enfold-child/functions.php page:
`/* Adds Custom CSS id and class input fields to element options */
add_theme_support(‘avia_template_builder_custom_css’);
thanks
Hi!
I’m doing an real estate website and there fields misalignment on page http://www.itz-sold.com/buyers/
Customer support from IDX broker found that conflict is in Enfold CSS and asked me to make following change
The issue that you are experiencing with the Quick Search widget is related to the styles that are part of your theme.
In file http://www.itz-sold.com/wp-content/themes/enfold/css/base.css?ver=2 on line #209 you have to remove display: block; or adjust the CSS, so that it does not affect IDX content.
So if I do that change, will it break Enfold CSS?
-
This topic was modified 11 years, 6 months ago by
igorvavrik.
Hi !
I found that on the internet :
Layer options
*Content You can select what kind of content you want to use here. You can use a static image, text, custom HTML or multimedia contents. You can also choose to use dynamic contents from WordPress posts and pages. It supports advanced filtering to get the entries you need, and you include the part you would like to use in a layer such as the title of a post or its featured image.
*Transitions The transition options you can set to customize your layer animation. Move your mouse cursor over the option fields to receive a detailed description about each available settings.
*Link Enter an URL to link layers to other pages. The link behavior can be changed to open it within the current page or on a new tab/window. You can also enter a hash tag followed by a number to link a layer to another slide. <strong>For example #3 will switch to the third slide when someone clicks on this layer.</strong>
*Style Under this section you can customize the appearance of your layers, such as changing the fonts or setting the size of images. Please read the tooltip messages for more information by hovering over the setting fields. You can also enter custom CSS code if there isn't an option what you are looking for.
*Attributes You can apply standard HTML attributes on layers to make it easier working with them in CSS and JavaScript. It also can be used to collaborate with 3rd party solutions like Lightbox plugins.
It seem to be possible to do a simple link with #ID to jump to an other slide. I’ll try tonight when i come back to home !
I had not noticed this until today. I had set up a Page quite awhile ago and it was working properly in Enfold.
http://fritzimages.com/blog/instructors/
I went to the page to do some basic Page editing and the WP SEO plugin 1.5.5.3 meta data description field no longer had the original content, the page slug was not the same as the permatlink, the permalink had changed and redirected, and other fields used in WP SEO had auto populated with non-original content.
Upon investigating I found that I was using Enfold ->Content Element ->Blog Post. setting: Display entries from a custom taxonomy/.
From what I can see, the last post blog in that custom taxonomy has been force loaded into the page, auto populating and over riding my original content.
I also check my home page where I also use BLOG post, and it unfortunately is also toast. All original content , meta description of my site for SEO, gone and rewritten with an recent equipment post.
I assume you now about this issue as WP SEO has over 12M installs, so I guess others have the issue
Do you know what is going on ?
Is there a fix from Enfold ?
Have you notified Yoast ?
If so does he have a planned fix ?
Just so you know, this problem really dented my site, its SEO and recent campaign because of a redirect issue now going to archives instead of the page.
Any quick help or response, would be greatly appreciated. I also may fall back to a prior WP SEO version if I can find it, or contact Yoast myself.
Thanks !