Forum Replies Created
-
AuthorPosts
-
Hi microtool!
Make sure the blog page is translated and make sure you have the blog page selected in Dashboard > Enfold > Theme Options for both languages. When in Dashboard > Enfold look to the top left corner of the theme options to see how to change the settings for each language.
Best regards,
ElliottHey Marcel!
I’m sorry but I’m not sure I understand. Can you send us a link to your page so we can get a better idea? You can set your reply as private if you wish.
Cheers!
ElliottDecember 16, 2014 at 10:38 pm in reply to: Using Left Menu Version – Left menu is not responsive #369203Hi ewingmh!
Navigate to Dashboard > Enfold > General Layout and set the “Sticky Sidebar menu” option to “sticky if sidebar is less than screen height”.
Regards,
ElliottHey popisgrzegorz!
Open up /enfold/js/shortcodes.js and find line 2436.
thisheading.addClass('activeTitle');And change it to this.
thisheading.next().hide(); thisheading.addClass('activeTitle'); thisheading.next().slideDown(600);Best regards,
ElliottDecember 16, 2014 at 10:01 pm in reply to: Disabling 'comments' button on 404 page and changing title of the same #369187Hey!
In that case open up /enfold/includes/error404.php and change line 36 from this.
the_widget('avia_combo_widget', 'error404widget', array('widget_id'=>'404',To this.
the_widget('avia_portfoliobox', 'error404widget', array('widget_id'=>'404',Regards,
ElliottHi blankonblank!
This this out, https://wordpress.org/plugins/soundcloud-shortcode/.
Best regards,
ElliottHey!
The special heading element does not have a pixel value option so I’m not sure I understand. Send us a link and take a screenshot highlighting what your trying to do so we can get a better idea.
Regards,
ElliottHi mmiraculeux2014!
Thanks for using Enfold.
The magazine currently does not have that feature and it would take a lot of time and code to add it in. We could hardcode the query in the file to do that but then you would only be able to use it that way.
You can create a feature request here, https://kriesi.at/support/enfold-feature-requests/, and we may see something get added in a future update.
Regards,
ElliottHey!
It looks like you added your class as “.homebox1” in the custom CSS field. Use just “homebox1” instead, with no period.
When you write your CSS code then you need to use a period to target a class but for adding a class to an element there should not be one.
Cheers!
ElliottHi Esquido!
It looks like your using Enfold 2.9.2. Updating to the latest version 3.0.4 should fix this.
See here for updating via FTP, http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/.
Cheers!
ElliottDecember 16, 2014 at 9:13 pm in reply to: Excerpt & Image sizes issues in home (Featured Image) #369157Hey!
Yes, or when you edit your post you can set a custom excerpt in the excerpt field. If you do not see the excerpt field then click on “Screen Options” in the top right hand corner of your screen and check it to display.
Regards,
ElliottDecember 16, 2014 at 9:12 pm in reply to: Advice – full width images on mobile devices in portrait view #369153Hi MarcG5!
Perhaps your looking for something like this?
@media only screen and (max-width: 479px) { .av_fullscreen, .av_fullscreen * { max-height: 200px !important; } }That will shorten the height a bit on small screens so it appears to be more landscape.
Cheers!
Elliott-
This reply was modified 11 years, 1 month ago by
Elliott.
Hi nigdowser!
It’s a field that displays beneath the advanced layout builder when editing your page.
Send us a WordPress login and we’ll check to see if you did it correctly.
Cheers!
ElliottHey sreckeweg!
Try increasing your memory, http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP.
And increasing the file upload limit, http://www.wpbeginner.com/wp-tutorials/how-to-increase-the-maximum-file-upload-size-in-wordpress/.
If that does not help then turn on WordPress debugging, http://codex.wordpress.org/Debugging_in_WordPress, and send us a WordPress login so we can take a closer look. I tried logging in with the information you provided but I think it’s only for FTP.
Regards,
ElliottHi!
I don’t think most people would care to have that information displayed so probably not. If you want you can add a feature request here, https://kriesi.at/support/enfold-feature-requests/.
Best regards,
ElliottHi!
Add this.
.inner_product * { border: 0 none !important; }Besides that, the border you see is on the image itself so you would need to edit the image to remove it.
Best regards,
ElliottHi phausner!
It appears to be displaying fine on my end. I checked your links in the dashboard and they are all displaying correctly on the front end.
Take a screenshot and highlight what your seeing.
Regards,
ElliottHey!
It’s the same color on my end. Try deactivating all browser plugins and extensions your using and try viewing in a different browser.
Regards,
ElliottDecember 16, 2014 at 8:32 pm in reply to: Alternate Content Area – how to set Avia Layout Builder to 1/2 or else #369126Hey!
Try using an image hosting service such as imgur.com.
Regards,
ElliottDecember 16, 2014 at 8:31 pm in reply to: Affecting heading colours in CSS by page or parent and child #369123Hey spheor!
I suppose the “easiest” way would be to add this to your custom CSS.
.page-id-268 #main h1, .page-id-268 #main h2 { color: purple !important; }Cheers!
ElliottHi axelfx07!
Your not supposed to use the theme shortcodes in the codeblock element. You can simply drag the icon element over to your content to display it.
Regards,
ElliottHi skippertux!
Update Enfold to 3.0.4 to fix this. Your currently using 3.0.1.
See here for updating via FTP, http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/.
Regards,
ElliottHey rhsheehan!
Send us a link to your page and we’ll take a look. You can set your reply as private if you wish.
Cheers!
ElliottDecember 16, 2014 at 7:22 pm in reply to: Contact Form fields on the same line alignment problem #369099Hey samadhi_!
Your still using Enfold 2.7 it looks like. You’ll need to update to the latest version, 3.0.4, to fix this.
See here for updating via FTP, http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/.
Cheers!
ElliottHey Knut!
That’s pretty cool, thanks for sharing.
I didn’t test it out but perhaps something like this in the bottom of your functions.php file would work.
add_action( 'wp_footer', 'enfold_customization_phone_form' ); function enfold_customization_phone_form() { ?> <script type = "text/javascript" src = "URL to the script"></script> <script type = "text/javascript"> jQuery(document).ready(function(){ jQuery("#avia_phone_1").attr("type", "tel").intlTelInput(); }); </script> <?php }You would need to add a text input to your form and then set the label to just “Phone”. You would also need to download the script and link to it correctly on this line.
<script type = "text/javascript" src = "URL to the script"></script>Best regards,
ElliottDecember 16, 2014 at 7:08 pm in reply to: Page goes blank when trying to acess enfold settings, creating new pages etc.. #369094Hey!
Your content and settings are saved in the database so they will be safe. The only stuff that will be deleted are the theme files so if you have edited them in any way then they will need to be redone.
To be safe though you can export your theme settings in Dashboard > Enfold > Import/Export.
Regards,
ElliottHey evabo!
Are you trying to change the font size of the special headings? If so then you can use this CSS.
h1.av-special-heading-tag { font-size: 90px !important; } h2.av-special-heading-tag { font-size: 80px !important; }Cheers!
ElliottHi axelfx07!
Try using a codeblock and then add HTML inside it. It should be able to save then.
Best regards,
ElliottHey Khanh Hong!
You can do a query for posts between a certain date but that’s not going to make the post completely hidden. You would need to use a plugin for this but I do not know of any that I can recommend.
Regards,
ElliottHey jmcreasman!
Make sure the slide width is set to 100%. Also make sure the “Responsive under” setting is set to around 1200.
If your still having problems then send us a WordPress login and we’ll take a closer look.
Regards,
Elliott -
This reply was modified 11 years, 1 month ago by
-
AuthorPosts
