Forum Replies Created
-
AuthorPosts
-
Hi thevoiager!
If you want to add them into the menu then you can just add them as menu items. Then you would need to style them as buttons which can be done with a bit of css.
If you wanted to have them in the header but not part of the menu then it would be best to look into a freelance developer who can modify the header for you and make all the needed css changes to keep it responsive and cross browser compatible.
Regards,
DevinNesting shortocodes inside tabs is going to be somewhat touchy and will never be suitable for handing off to a client easily. Even with how many layout options there are with the theme and shortcodes some things are just not suitable.
For that kind of layout what I would normally do is only edit it in the text tab and never let the visual editor touch it.
On that page specifically you can do somewhat of a workaround and use:
#top.page-id-38 #tab-id-4-container br { display: none; }
To target that page and the tab with the columns and then remove the breaks from rendering.
The advanced layout editor has more options than what is in the wand icon. I’m not sure if that is what you meant to say but if you want to avoid WordPress messing with spacing then you should use the advanced layout editor.
If you are trying to use shortcodes within a text element inside of the advanced layout editor then that isn’t actually supported at the moment since there isn’t coding in place for full stacking inside the text element.
Hi Toratheus!
Kriesi will be releasing some of the custom stuff as tutorials, some as improvements on Enfold core and others he may not ever release. We’ve been asked not to provide any of the customization via support as he would like it to remain custom for now. Though anyone is of course welcome to dig into it and replicate things themselves.
Cheers!
DevinNovember 21, 2013 at 5:44 pm in reply to: Child-theme does not call /config-templatebuilder/config.php #191522You need to use this function here: https://kriesi.at/support/topic/portfolio-meta/#post-134009
That will let you have your own shortcodes folder in your child theme.
Hi fitzpatrick512!
The blog gets created by the file in config-templatebuilder>avia-shortcodes>blog.php if you want to edit it there.
Best regards,
DevinHi!
Try only using the text tab of the text editor so that the content doesn’t get touched by wpautop. Its wrapping your script in a paragraph tag and adding in a break tag too.
This might do it but its a band-aid:
.post-entry-4041 p { margin: 0; }
Regards,
DevinHey!
WordPress will parse your line breaks and turn them into break tags. So working with shortcodes tends to be a bit of a trick unless you only work in the text tab or disable wpautop( http://codex.wordpress.org/Function_Reference/wpautop).
One thing you may want to try, though it may not be suitable for clients, is using this function:
/*-----------------------------------------------------------------------------------*/ /* Instead of remove_filter('the_content', 'wpautop'); /* Removes wpautop from specified pages with a custom field: /* Name: autoformat Value: false /*-----------------------------------------------------------------------------------*/ function st_remove_wpautop($content) { global $post; // Get the keys and values of the custom fields: $rmwpautop = get_post_meta($post->ID, 'autoformat', true); // Remove the filter remove_filter('the_content', 'wpautop'); if ('false' === $rmwpautop) { } else { add_filter('the_content', 'wpautop'); } return $content; } // Hook into the Plugin API add_filter('the_content', 'st_remove_wpautop', 9);
then when you add the custom field with the name wpautop and give it a value of false it will disable wpautop on that page specifically.
Otherwise using the advanced layout editor will allow you to add in the layouts without worrying about it.
Regards,
DevinNovember 21, 2013 at 4:37 am in reply to: Why no Comments on Portfolio using Advanced Editor – Real problem #191293Hey hcentral!
No, not at the moment unfortunately. Though you can use shortcodes on the portfolio pages in the regular visual editor for almost all the same layouts as a work-around.
Best regards,
DevinHi elp!
The shortcode isn’t technically supposed to work when used by itself. The advanced layout editor is the only method to add it into the page and then have the needed html structure wrapping around it and the rest of the page.
Best regards,
DevinHi aebli!
That is the correct behavior. Color sections will always be full width and will move the sidebar below it. There is no way around this right now.
Cheers!
DevinHey!
Try talking with your hosting provider about what you will need to do to increase the allowed memory for WordPress. You can reference this blog article about it: http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Cheers!
DevinHi!
Can you first try updating the theme files to the most recent version of the theme. 2.1, which is installed, is quite a few months behind at this point and you’ll need to update to keep things up to date with the newest version of WordPress too.
For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750
Best regards,
DevinThe only other thing I could suggest would be to talk to your host and see if they see any issues with timeouts or something like that. I’ve been using the same install for all of Kriesi’s themes with 64mb(on purpose for testing) of memory and hundreds of different pages at this point and am not getting any issues with the admin being overly slow.
Different hosts run WordPress at varied levels and with Enfold there is a lot more going on when you are saving a page because of the extra data with the template builder so the flaws and budget hardware/settings start to get highlighted pretty quickly.
Hey Mark!
Not sure what you mean by others having the same issue, this is the first I’ve seen of it this week and just to double check I went back through the past 5 days of Enfold posts and didn’t find any other mentions of it.
Are you following the same steps as in this video and getting the issue: https://vimeo.com/channels/aviathemes/75743285
Can you try deactivating all currently active plugins and then trying the upload and add again?
Cheers!
DevinHi TheProductionHouseEvents!
A couple of things to address first: you are on an older version of Enfold and you’ll need to update to bring it up to date with the current version of WordPress. For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750
There are a good number of big errors loading in theme scripts and other items which seem like a symptom of something else going on so try deactivating all active plugins you have running and see if that helps.
Cheers!
DevinHey austway!
While it is possible it isn’t something we can help with as its beyond the scope of what we can do via support. Your best route would be either a plugin or a freelance developer who can help you with the customization.
Best regards,
DevinNovember 21, 2013 at 2:29 am in reply to: Post featured images all different sizes.. Need consistient size #191246Hey!
If you want them to be an exact size every time then you would need to upload them at that size or with the exact same proportions. WordPress has somewhat poor performance if you are picky on very specific image output for automated thumbnails.
If you’ve changed a thumbnail size or added in a plugin that has done it then you would get different results from one post to the next (in between the change).
You would need to regenerate the thumbnails with http://wordpress.org/plugins/regenerate-thumbnails/
Right now I’m not even sure what is getting output as there is some other plugin modifying the image output size that beyond what the theme would.
Best regards,
DevinHi!
I’m not sure if the masonry galleries have been added into the 2.4.2 dummy data or not but its pretty straightforward how to create them using the advanced layout editor: https://vimeo.com/channels/aviathemes/77433498
For your permalinks, you can try the troubleshooting options from the codex here: http://codex.wordpress.org/Using_Permalinks#Fixing_Permalink_Problems
Best regards,
DevinHi!
You will need to update your Enfold theme files to the most recent release to bring it up to compatibility with 3.6+.
For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750
Cheers!
DevinHey JMH_International!
You can customize each of your pages however you want using the advanced layout editor. If you want a different layerslider to be at the top of each you would just need to create a different one for each page.
Best regards,
DevinI’m not sure what the issue may or may not be but I would agree with the gallery element not being compatible with the advanced layout editor.
The pagination on that single test page however works fine for me at least.
Hey Barabbas!
If you don’t have access to your site via FTP then you’ll need to talk to your host about changing the chmod permissions on the theme folders in your WordPress admin so that you can write over the theme file by uploading from the WordPress admin.
Otherwise via ftp you can follow this video: https://vimeo.com/channels/aviathemes/67209750
Regards,
DevinHey!
Not sure what the negative would be to leaving them there other than some slightly incorrect search results until the redirects correct the data.
Cheers!
DevinI’m not sure what you mean by that. Can you explain a bit further on what the issue is as this is somewhat self conflicting: “I’ve tried to upload all of my pictures at the same time, when in fact I was uploading none.”
Hey!
1) We can’t see a temporary link so I’m not sure what you mean. Make sure however that you are adding in your excerpt content to the excerpt field of the post.
2) I don’t know what widget content you mean. Do you have a live example?
3) You can use display: none; instead of just hiding them.
Cheers!
DevinHi!
Since the cookie requirement is readily available with other plugins I would recommend finding a different one. There are far too many plugins to debug them all and at the moment we just aren’t able to debug this one.
Best regards,
DevinHi!
The advanced layout editor is *not* support on blog posts. The video tutorial for it was removed some time ago because it was causing issues with one of the recent updates and since it isn’t something Kriesi will be added support for I didn’t want it to look officially endorsed.
So if it is causing issue, unfortunately there isn’t anything we can do about it.
Regards,
DevinNo special settings needed. The video one is a video post format and its showing the first video inside the post. The others are either regular post types or if its a Gallery post type its showing the first gallery added at the start of the post as well.
November 20, 2013 at 11:16 pm in reply to: Switching between advanced layout and basic layout – what's supposed to happen? #191173Hey ilowelife!
The two are supposed to be completely separate and used either/or. So if you are using the visual editor for a page you wouldn’t use the advanced layout editor.
Best regards,
Devin -
AuthorPosts