Forum Replies Created
-
AuthorPosts
-
Can you also enable debug mode and then paste the contents of that pages layout here so we can try and recreate the page and error?
Add this to your functions.php and then you’ll get a new field with the shortcodes and content for that page:
//set builder mode to debug add_action('avia_builder_mode', "builder_set_debug"); function builder_set_debug() { return "debug"; }
October 10, 2013 at 4:02 pm in reply to: Display Media item Title instead of Media item Description in Lightbox #173650Hello!
You should be including all of that information in the meta data for the photos anyway in that case. WordPress will then autofill in the fields with the embedded data and display it.
And if you wanted to use the default WordPress gallery function it can be placed into a regular text field element using the built in WordPress add media/gallery tools.
Best regards,
DevinTry Kriesi’s solution in this post: https://kriesi.at/support/topic/icons-still-not-working-in-firefox-and-ie/#post-173204
Hey ricardoreis!
See this video:
Regards,
DevinYou only need to include the styles you want to edit into your style.css file. If you pull in the entire file it won’t automatically be used instead of the parent however.
October 10, 2013 at 4:33 am in reply to: Custom content type using avia layout editor doesn't use a normal template file? #173380Hello Branndon!
I think you misunderstood what I said. The template file you created *from* the page.php file is where you need to edit. We don’t officially support adding the advanced layout editor to custom post types right now but the file used is template-builder.php for files using the advanced layout editor.
Regards,
DevinOctober 10, 2013 at 4:27 am in reply to: Switching between "Avia Layout Builder" and "Default Editor" fails #173376Hey Jens!
No, this is the intended behavior for the advanced layout editor. It doesn’t actually save any data into the pages visual editor and instead saves all of the data into a custom field on the page.
Using one or the other on a page should clear out the contents of the other or at least you risk doing so when saving.
If you really want to see the contents of the advanced layout editor you can add this to your functions.php:
//set builder mode to debug add_action('avia_builder_mode', "builder_set_debug"); function builder_set_debug() { return "debug"; }
Just be careful since the data is saved directly to the database.
Regards,
DevinOctober 10, 2013 at 4:23 am in reply to: Copying/Moving Elements to Different Pages (Enfold Theme) #173375Hey leifhansen!
In the top right corner of the advanced layout editor there is a Template button where you can save a page as a template and then on another page load all of that content in.
There isn’t currently an option to pull out an individual element but you can enable debug mode to reveal the shortcodes that make up the advanced layout editor. You just need to be careful editing the field and its contents because its directly saved in the database and if the data gets corrupted from a mistype or something like that it may not be recoverable.
Add the following to your functions.php to enable it:
//set advanced layout editor to debug add_action('avia_builder_mode', "builder_set_debug"); function builder_set_debug() { return "debug"; }
Best regards,
DevinHi!
You could try changing the background position to center center and see if that has any effect. Additionally try going to the styling tab of the theme options, make a small change and then save to refresh the themes styling file just in case there is any issue there.
Cheers!
DevinHey Michael,
We’ll need a bit more information in order to try and help. What exactly isn’t looking correct or working correct ? What is the URL for your site as well.
The theme doesn’t have a switch or anything to change how the site looks on any specific device. It has media queries which adjust the elements based on the current screens width. So switching from portrait to landscape may alter the layout if the difference is big enough and on mobile devices there are some specific changes to help just with those very small screens (removing elements, adjusting etc). So just making the site look the same on mobile as it does for iPads isn’t something we can easily do.
Regards,
DevinHi!
You could have them custom coded in but it isn’t something we could assist via support unfortunately.
Cheers!
DevinHello!
Below 767px wide the sidebar will show and is showing on your site (because of the previously added css to show the sidebar). Above that pixel width the themes grid has the sidebar on the left/right.
Best regards,
DevinHello nimrodmadar!
I would suggest updating via FTP and download the theme files before doing so.
Best regards,
DevinOctober 9, 2013 at 10:42 pm in reply to: Blog Post Single View Not Rendering Content or Footer (Using Child Theme) #173290Hi!
The only thing I can think of is to try re-copying over the child theme files and then re-doing the changes one by one to each file to try and narrow down where the issue is coming from.
Outside of that without having done or inspected each file we wouldn’t be able to say for sure why its happening.
Cheers!
DevinHi!
You can add the color property to that declaration and change the value as needed:
.language_code { display: block !important; text-transform: uppercase; color: #333; }
Cheers!
DevinTry changing them to 301 by 214. In functions.php look for:
$avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns
Since you have a bigger width/area you can increase the size and then re-generate all the thumbnails with : http://wordpress.org/extend/plugins/regenerate-thumbnails/
There isn’t much we can do about that. The download speed is determined by your server and how fast it responds to the request for data combined with the data on those pages.
Performance with WordPress is a pretty big topic but generally using a caching plugin is your best route for increasing performance. Even just using a plugin to minify scripts will decrease file size and help speed up downloads.
Hey ChaosWeb!
One or more of your currently active plugins are causing a conflict with the theme. So you’ll need to deactivate your plugins and then re-activate them one by one to find out which one is causing the issue.
Cheers!
DevinOctober 9, 2013 at 3:39 pm in reply to: Image hover, main menu drop down, custom buttons, footer formatting, and more… #173075Hey chekkers!
This kind of customization is beyond what we can do for you via support. You can hire a freelance developer at somewhere like Microlancer or Codeable.io and they can complete the list of changes for you.
Regards,
DevinHello!
You can do something quick and direct like:
@media only screen and (max-width: 767px) { .flex_column.av_one_fifth, .flex_column.av_one_fifth, .flex_column.av_one_fourth, .flex_column.av_one_third, .flex_column.av_two_fifth, .flex_column.av_one_half, .flex_column.av_three_fifth, .flex_column.av_two_third, .flex_column.av_three_fourth, .flex_column.av_four_fifth, .flex_column.av_one_sixth, .flex_column.av_one_seventh, .flex_column.av_one_eighth, .flex_column.av_one_nineth, .flex_column.av_one_tenth{ width: 100%; margin-left: 0px; } }
If there are any further tweaks or you want it to only effect some areas but not others, fix cross browser issues etc then a freelance developer is your best route. I’d recommend Codeable.io if you want to get a more custom change.
Regards,
DevinHi Jyles,
Kriesi has the download available in a comment on that video.
Child theme information can be found here: http://codex.wordpress.org/Child_Themes
It isn’t quite that simple but for files in the main folder of the theme (header, footer etc) the child theme version will be used first.
Regards,
Devin
Thank you both, looking into it now.
I’m not sure what it could be at this point. Earlier the icons were showing fine on my end and still are on my macbook but checking this afternoon they are missing on my desktop now.
Can you create a temporary admin account and reply back with the details so we can dig in a bit further.
Hi!
It should be in the General tab after updating.
Regards,
DevinI’m not sure any of us have Air’s to test on, I think Kriesi is also using a macbook pro but the specs should be the same. I’m not sure how you are getting something that I’m not with what should be the exact same OS and Browser.
I’ll tag Kriesi on the topic and see if he can figure out what is happening.
Hello!
Can you try the steps I just posted here: https://kriesi.at/support/topic/icons-still-not-working-in-firefox-and-ie/#post-172730
There is something odd going on with IE under certain circumstances and we are trying to narrow it down to a specific case to find a fix.
Regards,
DevinOctober 8, 2013 at 10:06 pm in reply to: Using Social Icons as Navigation / Increasing the size of the icons #172733Okay, just let us know!
Try going into functions-enfold.php in your theme files and look for:
/* * add html5.js script to head section - required for IE compatibility */ if(!function_exists('avia_print_html5_js_script')) { add_action('wp_head', 'avia_print_html5_js_script'); function avia_print_html5_js_script() { $template_url = get_template_directory_uri(); $output = ''; $output .= '<!--[if lt IE 9]>'; $output .= '<script src="'.$template_url.'/js/html5shiv.js"></script>'; $output .= '<![endif]-->'; echo $output; } }
Change it to this:
/* * add html5.js script to head section - required for IE compatibility */ /** if(!function_exists('avia_print_html5_js_script')) { add_action('wp_head', 'avia_print_html5_js_script'); function avia_print_html5_js_script() { $template_url = get_template_directory_uri(); $output = ''; $output .= '<!--[if lt IE 9]>'; $output .= '<script src="'.$template_url.'/js/html5shiv.js"></script>'; $output .= '<![endif]-->'; echo $output; } } **/
Now go to your header.php file and look for:
</head>
and add this line just above that:
<!--[if lt IE 9]><script src="http://mydesignspace.com/wordpress/wp-content/themes/enfold/js/html5shiv.js"></script><![endif]-->
See if that helps at all.
Hey LOGTJM!
I’m not really sure what you mean. Can we see the site live and inspect what you have? What exactly is the effect you are looking for as maybe there is a misconfiguration of the layout editor for that specific layout/effect.
Regards,
DevinHello wvanderzee!
What is the URL for the site?
Best regards,
Devin -
AuthorPosts