Hi,
I am using the Header with social icons and bottom navigation but would like to replace the social icons (the space to the right side of logo on the header) with my own header, to include text and images especially the phone number and emall address.
I assume I will have to customized the code somewhere, can you tell me what file to update and how I can do this?
I am a bit of a novice, so any steps you can give me would be useful.
Thanks
-
This topic was modified 11 years, 1 month ago by
teddybaker.
Hi!
There’s nothing we can change or “fix” on the admin page. As I said in my last post all pages already have a meta description (you can check this by viewing the source code in your browser or by using a tool like: http://www.seocentro.com/tools/search-engines/metatag-analyzer.html ) and everything works as intended.
Best regards,
Peter
I am doing a test here:
http://wordpress.nancymunford.com/?page_id=1097
but still have problem with my header on mobile, and the css changes I made to it messed up all my other css.
Can you take a look? Is my header the wrong size or are there other options for the mobile header that I am not seeing.
thanks
n
Hi, i dont know what happened but after the last Enfold update the wordpress-backend navigation (on Head) on preview site is transparent. How can i change it? Thanks for any help!
-
This topic was modified 11 years, 1 month ago by
ConnyQ.
Hi Josue,
Ok I understand. But can you find why your theme is causing my problem? Because I’d rather not having this “patch solution” and having my wordpress to work as it was installed.
The javascript problem in my admin area in only on Enfold so I’d like a fix for that. I love that theme but I don’t like when a theme is causing some problems that are not resolved and affect my wordpress settings.
Thanks for your understanding.
Kind regards
Chrys
This reply has been marked as private.
Hey FotografieDuo!
You can define a new widget based on the existing newsbox widget. Insert this code:
add_action('after_setup_theme','avia_load_additional_widget');
function avia_load_additional_widget()
{
if (!class_exists('avia_customcptbox'))
{
class avia_customcptbox extends avia_newsbox
{
function avia_customcptbox()
{
$this->avia_term = 'portfolio_entries';
$this->avia_post_type = 'portfolio';
$this->avia_new_query = ''; //set a custom query here
$widget_ops = array('classname' => 'newsbox', 'description' => 'A Sidebar widget to display latest cpt entries in your sidebar' );
$this->WP_Widget( 'customcptbox', THEMENAME.' Latest CPT', $widget_ops );
}
}
register_widget( 'avia_customcptbox' );
}
}
into your child theme functions.php or into enfold/functions.php and replace “portfolio_entries” with your custom taxonomy, “portfolio” with your custom post type, “Latest CPT” with your widget title/name.
Best regards,
Peter
This reply has been marked as private.
Hey!
You can find them in the wp_options table – it’s a field called “avia_options_enfold”
Cheers!
Peter
Hey!
Wenn die Event Plugin Maps ohne diesen Code funktionieren, dann kannst du diesen entfernen. Ansonsten würde ich diesen behalten.
Cheers!
Peter
Hi!
That kind of customization is beyond what we can do via support. If its a must- have feature you can either add it as a feature request here: https://kriesi.at/support/enfold-feature-requests/
or
Have it custom coded in by a freelance developer. I recommend Codeable, Microlancer or http://kriesi.at/contact/customization for hiring out the customization.
Best regards,
Devin
ok. I just had lots of errors when I updated to get those new options – header all messed up and when i fixed it I lost all my css customization, though not on the mobile. I will do some tests. Is there some documentation you release with the new update that lists all the changes?
thanks
n
Hallo liebe Leute, hallo Peter.
Peter, Du hattest mir doch bei dem Problem mal einen Code gegeben, den ich glaube ich in die function.php vom Enfold Child Theme eingetragen hatte. Das klappte auch wunderbar. Doch vor kurzem habt Ihr doch den Google Maps Kram überarbeitet und deshalb meine Frage: brauch ich Deinen Hook überhaupt noch oder kann ich den rausnehmen?
Es ging ja darum, dass das Event Plugin auch Google Maps verwendet und es zu einer Kollision der beiden JS-Bibliotheken kam, der vom Event Plugin und dem von Enfold.
Hey Katrin!
Please make sure that the header settings are saved properly for all languages. Go to Enfold > Theme Options > Header and check the settings. Then click the “Save Changes” button. Afterwards select another language from the language switcher (can be found in the admin toolbar at the top) and then check the Enfold > Theme Options > Header and check the settings of the translated website. Probably the settings are a bit different and you need to re-configure them. Afterwards hit the “Save Changes” button again. If this doesn’t help please create me an admin account and post the login credentials as private reply.
Regards,
Peter
Hi theworldawaits!
Please post a link to the gallery. We’ll investigate the source code and provide some custom css code.
Regards,
Peter
Hi eswyt!
If it started “suddenly” please try to deactivate all third party plugins. Maybe a plugin you activated recently breaks IE9 and you need to activate them one by one to find the culprit. If this doesn’t help try to revert your code customization and update Enfold to version 2.6.x. Then apply your changes again and check if the theme layout/styling breaks on IE9.
Best regards,
Peter
Hey!
Please create me an ftp account. I must modify the enfold/config-wpml/config.php file to debug the code but I can’t use the default theme editor (gives me an access denied error).
Best regards,
Peter
Hi!
Auto add pages means that every time you create a new page, it will be added automatically to the menu. The Theme Location specify where you want the menu to show. Enfold Main Menu means that the menu will be use on the header as main menu. Enfold Seondary Menu is the menu on top of the header along with the phone number and social icons. Enfold Footer Menu is quite obvious. If you’re having issues with menu limit, you can ask your host to increase max_input_vars to at least 5000. This will make sure that you can add at least 400 menu items.
Best regards,
Ismael
Hey!
Your website shows the meta description in the source code. I.e. on the homepage it’s:
<meta name="description" content="Bierproeverij en bier & spijs events. Spéciale verzorgt Bierproeverijen en bier & spijs events op locatie. Ook voor Horeca, Retailers & events."/>
Note that you can’t force google to use the meta description. It will generate the preview content based on the search term of the user and the relevance of your content. This is not a bug of the theme or Yoast SEO but it’s how google works….
Cheers!
Peter
Hi!
Yes, please post the login details here as a private reply. We would like to check it.
Regards,
Ismael
Hey!
While I debugged the code I provoke a php error. Please replace the functions.php file (wp-content/themes/enfold/functions.php) with the original functions.php file to get rid of the error. You can use ftp to replace the file. Please also create me an ftp account because I must modify a file I can’t access with the default theme editor ( wp-content/themes/enfold/framework/php/class-framework-widgets.php ) and I don’t want to break your website while I debug the code.
Cheers!
Peter
Thanks – yeah, file too big.
I found a great little tutorial that helped as I am a bit of a novice with the back end of file management. Searched youtube & I got an answer on how to upload a theme into my servers files and extract it. Uploaded. Extracted. Activated.
For reference, I use BlueHost as my server and the video I found was https://www.youtube.com/watch?v=kxtiQOgNiIg
Super basic stuff (for most) but for someone like me it was perfect.
Cheers Devin
– Andrew
-
This reply was modified 11 years, 1 month ago by
arcoates.
today there was an update of enfold but it solved absolute nothing…
Hi teddybaker!
See: http://kriesi.at/documentation/enfold/move-from-a-local-installation-to-a-live-server/
That plugin is the best method I’ve found when moving things since it allows you to easily change the serialized data for the new site/domain.
Regards,
Devin
Hi,
I have spent a lot of time setting up site pages using the Avia builder.
I want to make sure all my setting are back up so i don’t loose anything. And when i have completed everything want to move the settings and pages to my live domain and combine with another wp site.
Can you please advise the easiest way to do this. Do I need to install a plugin that can help?
Thanks
-
This topic was modified 11 years, 1 month ago by
teddybaker.
I’ve been developing WordPress sites for quite a few years now. This is best premium theme I’ve found. The Avia Framework is great. Well designed and a pleasure to use.
http://richmondexecutiveairport.com/
Hello,
Everytime we update, a change has to be made to class-form-generator.php file, because we want the date to show MM/DD/YY instead of default DD/MM/YY in the contact forms. Is there an easier way to do this or can it be added as an option in Enfold?
Cheers!