-
AuthorSearch Results
-
April 27, 2013 at 9:13 am #115915
In reply to: Entypo Icons in Navigation Menu
Hi!
No, but you can suggest it here: https://kriesi.at/support/topic/enfold-feature-requests
A workaround can be found here. https://kriesi.at/support/topic/icon-in-special-heading-section-or-icon-shortcodes
Regards,
Peter
April 27, 2013 at 8:59 am #116052In reply to: Adding Avia / Enfold Post Settings to CPT
You need to add your post type to the $boxes array in wp-contentthemesenfoldconfig-templatebuilderavia-template-builderconfigmeta.php
How to extend Avia layout builder to support CPT ?
At the moment not possible without manually tweaking the theme files. You can request the feature here: https://kriesi.at/support/topic/enfold-feature-requests though.
April 27, 2013 at 1:10 am #115830In reply to: Portfolio items – attach a URL
Hi Gordon,
No, as far as I know that isn’t possible at this point with the theme settings. You can request something like in the feature request thread here however: https://kriesi.at/support/topic/enfold-feature-requests
Regards,
Devin
April 26, 2013 at 9:44 pm #22521Topic: My Quick CSS? How do I make menu font in header larger?
in forum Enfoldmohitso
ParticipantThis is what my quick CSS looks like now and its not working, any ideas? Ijuyst want the words bigger.
it doesnt seem to change the size.
#header {
position: fixed;
}
#main {
margin-top: 152px;
}
#top .social_bookmarks li a {
font-size: 30px;
}
.main_menu ul:first-child > li > a{
font-size: 21px;
}
April 26, 2013 at 6:58 pm #116056In reply to: Larger Font in the header
it doesnt seem to change the size. Here is what I have in my quick CSS:
#header {
position: fixed;
}
#main {
margin-top: 152px;
}
#top .social_bookmarks li a {
font-size: 30px;
}
.main_menu ul:first-child > li > a{
font-size: 21px;
}
April 26, 2013 at 3:32 pm #114868In reply to: Enfold child theme
Hey!
Duplicate: https://kriesi.at/support/topic/enfold-13-setting-up-child-theme – I’ll mark that post for Kriesi…
Best regards,
Peter
April 26, 2013 at 12:36 pm #115986Hi Bernt,
Glad you were able to get things to your liking. SEO is a complicated subject and there isn’t really a right answer anymore these days. Even using multiple H1 on a page is completely fine and it has more to do with the html structure of where they are than having a single h1 per page.
The most important thing is having accurate and relevant content for the site topic and the search engines will do the rest :)
Regards,
Devin
April 26, 2013 at 7:52 am #115914In reply to: Entypo Icons in Navigation Menu
April 26, 2013 at 6:28 am #115076In reply to: header background image and logo image resize
Hi,
I dont have an IE8, and my emulators don’t display this issue. Looking at the code affecting the logo http://i.imgur.com/LpXtWn6.png , a possible cause may be the max-width:100%; from the img definition earlier in the cascade.
Try something like this in your /css/custom.css OR in Quick CSS located in Enfold > Theme Options > Styling … text area on bottom of that page
#top .logo img {
max-width: none !important;
}Adding the code doesn’t affect IE10, Chrome or FF
Thanks,
Nick
April 26, 2013 at 12:01 am #115918In reply to: Layerslider not working
I figured it out. I don’t know why the short code doesn’t work, but if you go into the advanced editor on the page you want your slider on, then choose the Media Elements tab, and click on Advanced Layer Slider. It will put it at the bottom, so you will need to drag it up top (I’m assuming that’s where you want it). Then choose the name of the slider you have made, and update the page. Hopefully that helps, and is a temporary solution. I would prefer if you could just add the short code. Hopefully it gets that option.
April 25, 2013 at 1:42 pm #114861In reply to: Enfold child theme
You can add a functions.php to your child theme folder – then insert following code into the child theme functions.php:
/*
* Register frontend javascripts:
*/
if(!function_exists('avia_frontend_js'))
{
if(!is_admin()){
add_action('wp_enqueue_scripts', 'avia_register_frontend_scripts');
}
function avia_register_frontend_scripts()
{
$template_url = get_template_directory_uri();
$child_theme_url = get_stylesheet_directory_uri();
//register js
wp_register_script( 'avia-compat', $template_url.'/js/avia-compat.js', array('jquery'), 1, false ); //needs to be loaded at the top to prevent bugs
wp_register_script( 'avia-default', $template_url.'/js/avia.js', array('jquery'), 1, true );
wp_register_script( 'avia-shortcodes', $template_url.'/js/shortcodes.js', array('jquery'), 1, true );
wp_register_script( 'avia-prettyPhoto', $template_url.'/js/prettyPhoto/js/jquery.prettyPhoto.js', 'jquery', "3.1.5", true);
wp_register_script( 'avia-html5-video', $template_url.'/js/mediaelement/mediaelement-and-player.min.js', 'jquery', "1", true);
wp_enqueue_script( 'jquery' );
wp_enqueue_script( 'avia-compat' );
wp_enqueue_script( 'avia-default' );
wp_enqueue_script( 'avia-shortcodes' );
wp_enqueue_script( 'avia-prettyPhoto' );
wp_enqueue_script( 'avia-html5-video' );
if ( is_singular() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); }
//register styles
wp_register_style( 'avia-style' , $child_theme_url."/style.css", array(), '1', 'screen' ); //register default style.css file. only include in childthemes. has no purpose in main theme
wp_register_style( 'avia-grid' , $template_url."/css/grid.css", array(), '1', 'screen' );
wp_register_style( 'avia-base' , $template_url."/css/base.css", array(), '1', 'screen' );
wp_register_style( 'avia-layout', $template_url."/css/layout.css", array(), '1', 'screen' );
wp_register_style( 'avia-scs', $template_url."/css/shortcodes.css", array(), '1', 'screen' );
wp_register_style( 'avia-custom', $template_url."/css/custom.css", array(), '1', 'screen' );
wp_register_style( 'avia-prettyP', $template_url."/js/prettyPhoto/css/prettyPhoto.css", array(), '1', 'screen' );
wp_register_style( 'avia-media' , $template_url."/js/mediaelement/skin-1/mediaelementplayer.css", array(), '1', 'screen' );
wp_enqueue_style( 'avia-grid');
wp_enqueue_style( 'avia-base');
wp_enqueue_style( 'avia-layout');
wp_enqueue_style( 'avia-scs');
wp_enqueue_style( 'avia-prettyP');
wp_enqueue_style( 'avia-media');
//register styles
if($child_theme_url != $template_url)
{
wp_enqueue_style( 'avia-style');
}
global $avia;
$safe_name = avia_backend_safe_string($avia->base_data['prefix']);
if( get_option('avia_stylesheet_exists'.$safe_name) == 'true' )
{
$avia_upload_dir = wp_upload_dir();
$avia_dyn_stylesheet_url = $avia_upload_dir['baseurl'] . '/dynamic_avia/'.$safe_name.'.css';
wp_register_style( 'avia-dynamic', $avia_dyn_stylesheet_url, array(), '1', 'screen' );
wp_enqueue_style( 'avia-dynamic');
}
wp_enqueue_style( 'avia-custom');
}
}April 25, 2013 at 1:32 pm #115589In reply to: Color Section
Afaik this is not possible at the moment and the color section will always cover the full width of the page. If you feel like a setting/feature is missing you can suggest it here: https://kriesi.at/support/topic/enfold-feature-requests
April 25, 2013 at 1:02 pm #115750In reply to: Icon in Special Heading Section or Icon Shortcodes
Hi,
no – unfortunately there’s no shortcode right now. I added your request to the feature request thread: https://kriesi.at/support/topic/enfold-feature-requests
However for now you can use the character map: http://www.entypo.com/characters/ to find the unicode. I.e. for the telephone icon use:
📞April 25, 2013 at 8:38 am #114860In reply to: Enfold child theme
Would be nice to have the child theme css load AFTER the main css. now we have to make all childtheme css a higher priority:
#top #main .alternate_color.title_container .main-title a {color: #fff;}
April 25, 2013 at 8:11 am #115729In reply to: Setting up a child theme problem,
Hi lounge35,
Kindly check this thread: https://kriesi.at/support/topic/enfold-child-theme
Regards,
Ismael
April 25, 2013 at 4:50 am #115653In reply to: Post image issue when migrating rom Broadscope theme
Hi Andreano,
Actually, unless you want to wait for something one day to be built or hire someone to build a custom importer, there is one way to do this relatively painlessly and would require a 39$ purchase , but I think the app is given with a 30 day free demo.
http://www.jitbit.com/macro-recorder/
You would need to use a macro recorder. You would open a browser window on right side of screen where new website shows, and on left side of screen where the old site shows. Then you would record yourself copying and pasting everything from old into new, including images, at the end you would return to old and delete the post you just moved, and stop the recorder.
Then you put the recorder to play in a loop, and it will repeat all the copying and pasting that you did by itself, you can leave and let it endless copy all the 700 posts. It will probably take a full day or more, but since you do not have to do it yourself, but only once to make the initial recording, I think that is not a bad approach.
The one of the two minor difficulties is that the macro recorder has no way of being able to tell which category checkboxes are checked as it has no bionic eyes, so solution would involve adding a line of code to the edit post/page/portfolio item page so that the categories which are normally checked, are instead displayed in a text box, each separated by commas, so then its just cut and paste
The second problem is that if some of your posts have 2 images and others have a different number, then there will be problem since macro recorder just repeats your initial actions . Though I also have an idea. You can record 3 mini macros , one mini macro for posts with one featured image, another for posts with two images and yet another for three images on a page, and then to add and display an aditional field which would contain a number representing the total number of featured images contained within the post. The macro recorder is able to run a basic if/then/else then statement and based on the number in the field it would execute one of the mini macros. Solved 100%.
I made a video of me doing this and its working! wow. https://docs.google.com/file/d/0B8hqGBMSfHtKcW9LLW1XZ3hyQVE/edit?usp=sharing … my speaker went crazy so i am sorry about the background hissing.
Thanks,
Nick
April 25, 2013 at 2:54 am #115663In reply to: Social media icons
Hi yingfuli,
Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
#top .social_bookmarks li a {
font-size: 17px;
}Adjust the font size as needed. Though it does degrade a bit at that size (the default is 13px).
Regards,
Devin
April 25, 2013 at 2:37 am #115547In reply to: Video Displaying Improperly
Hi tlow87,
Try changing the size of the video iframe first since that height is what is setting its height. Otherwise, Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
#top .flex_column .embed-youtube iframe {
width: auto !important;
height: auto !important;
}Regards,
Devin
April 25, 2013 at 2:16 am #22436Topic: Blogging format on the front page
in forum Enfoldandyhoodified
ParticipantIs there a way to make it look like theme’s blog format on the front page.
It’s another theme. (don’t worry, i prefer your overall theme much more)
http://para.llel.us/themes/moxie-wp/
Their blogging format is a lot more organized and not as jumbled up.
Which leads me to the second question is there a way to erase the image icon that goes on top of the image?
thanks much andy
April 24, 2013 at 9:21 pm #22428Topic: Portfolio with 2 line Title
in forum Enfoldjoe88
ParticipantHello. It seems like the portfolio item spacing top/bottom is lost when using a title that has more than 1 line of text. Does the css have to be modified to support titles with more than 1 line, for example, 2 lines of text. Thanks.
April 24, 2013 at 12:31 pm #22406Topic: Videos and Video Requests
in forum EnfoldDevin
Inactive ModeratorI’m doing some videos showing different layouts that can be built with the new Avia Page Builder. If you have any requests for specific layouts or ideas for me to try I would love to hear them.
Just leave them as a reply here and I will post them when they are done. To keep the topic clean I’ll delete responses but I do have them noted :)
Current videos can be found on the AviaThemes channel here: https://vimeo.com/channels/aviathemes
Install the theme files with FTP - https://vimeo.com/channels/aviathemes/64927356 Update the theme files with FTP - https://vimeo.com/channels/aviathemes/67209750 Intro to the Advanced Layout Editor (short) - https://vimeo.com/channels/aviathemes/64927358 Using the Advanced Layout Editor (long) - https://vimeo.com/channels/aviathemes/64927359 Add the Layout Editor to Custom Post Type & Posts - https://vimeo.com/channels/aviathemes/64996057 Add Google Maps widget to a sidebar - https://vimeo.com/channels/aviathemes/64978020 Make a thumbnail Gallery with the Layout Editor - https://vimeo.com/channels/aviathemes/65208795 From the LayerSlider plugin Authors on using the LayerSlider: http://www.youtube.com/watch?v=ZY9SxVyugx4Regards,
Devin
-
This topic was modified 12 years, 2 months ago by
Devin.
April 23, 2013 at 9:03 pm #115521In reply to: Image – The Office
Hi joe88,
That is just a Color Section set with a background image set to Fixed. Then the content on top of it :)
Regards,
Devin
April 23, 2013 at 8:58 pm #115431In reply to: "In case you need help " Section Homepage
Hi Sebastian,
That is a color section with a custom image as the background. Then inside of it, three Icon Box Content Elements with the icon placed in the Top position with each icon box in a 1/3 layout element.
Regards,
Devin
April 23, 2013 at 8:21 pm #115504In reply to: I wont Header Non fixed in Enfold theme
Hi AlexiaNin,
I’m not quite sure what you mean. The only header options that are available are those in the theme settings>header. If you wanted something outside of that, you can request it in the Feature request topic here: https://kriesi.at/support/topic/enfold-feature-requests
Regards,
Devin
April 23, 2013 at 10:53 am #115105In reply to: Problem with Special Heading Item
Hi,
If you can take a screenshot and point out the line , it would help those of us without Macs to figure out where its coming from.
But going blindfolded , please try adding this to /css/custom.css OR to Quick CSS located in Enfold > Theme Options > Styling … the text area on the bottom of the page.
#top .special-heading-inner-border {
width: 0%;
}Thanks,
Nick
April 23, 2013 at 6:03 am #114519In reply to: Google maps widget in custom widget area
[Edit: Code below works with single point map. If you want driving directions, a better solution is found on this url https://kriesi.at/support/topic/google-maps-widget-in-custom-widget-area#post-106864 ]
Hi,
Ok, Once you make the replacement below, everything will work fine. Please open up /framework/php/class-framework-widgets.php and find line 1177 which looks like
$output .= "<script type='text/javascript'>and delete line 1177 and all other lines till the end of the file.
In their place, please paste the code below
$output .= "<script type='text/javascript'>
function makeMap_".$avia_config['g_maps_widget_active']."() {
var latlng = new google.maps.LatLng(".$lat.", ".$lng.")
var myOptions = {
zoom: ".$zoom.",
center: latlng,
mapTypeControl: true,
mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
navigationControl: true,
navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
mapTypeId: google.maps.MapTypeId.".$type."
};
var map = new google.maps.Map(document.getElementById('avia_google_maps_$unique'), myOptions);
var contentString = '$content.$directionsForm';
var infowindow = new google.maps.InfoWindow({
content: contentString
});
var marker = new google.maps.Marker({
position: latlng,
map: map,
title: ''
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map,marker);
});
}
jQuery(document).ready(function() {
makeMap_".$avia_config['g_maps_widget_active']."();
});
</script>
<div id='avia_google_maps_$unique' class='avia_google_maps_container'></div>";
return $output;
}Thanks,
Nick
April 23, 2013 at 5:12 am #22350Topic: I wont Header Non fixed in Enfold theme
in forum EnfoldAlexiaNin
ParticipantHello, I’m AlexiaNin, I tried to put the unfixed header, selecting all the header types, except Small fixed headed, logically, and also I tried in diferent sizes but does not work for me. I like when header with menu scroll dawn when you navigate.
Also my Logo appears not well centered and too much space below than in top, and looks like not so well.
Can you help me?
(Sorry for my poor english)
Thanks.
April 22, 2013 at 4:18 pm #22326Topic: Bug with archive pages
in forum Enfoldsanderpinkse
ParticipantI just discovered that when I choose the Grid Layout in the Enfold Blog Style settings, all archive pages stop working. It took me a while to find out why this was happening, but looking at the contents of archive.php gave me a clue…
I would like to use the Grid Layout, but I like having my archive pages even more… Would this be easy to fix?
Cheers,
Sander
April 22, 2013 at 2:51 pm #114555In reply to: Enfold Feature Requests
(from 10+ posts)
Here is my wish list so far. Thanks!
1. Ajax Portfolio. Please also consider an option to have a link for both quick view and detail view. Some users may want the option to go directly to the detailed view. How about the option to have different hover icons and hover styles.
2. Portfolio/Blog Slider. Please consider improving the navigation arrows. Difficult for user to know there is more to scroll without hovering over the image.
3. Masonry Blog Layout. Please consider more layout options for Blog, possibly masonry/magazine type layout, etc.
4. Timeline Component. Would be great to integrate a javascript timeline component, such as the one from VeriteCo.
5. Small header with menu and icons, with header piece being fixed, possibly shrinking also.
====================
A few more suggestions…
1. Portfolio – Please consider a Load More button function as an option instead of of the page based pagination. Load More provides better dynamic user experience with the ability to see more items on the same page.
2. Ajax Search – Please provide a way to use the Ajax Search in the side bar and/or on a page as a page builder element.
3. Breadcrumbs – Please consider adding Breadcrumbs as a short-code where it can be placed at top of the page above title. Difficult for some users to find the breadcrumbs when it’s aligned to the far right.
4. Contact Form – Definitely need more fields like pick-list, drop-downs, etc. Also need more flexibility when using Google maps like height adjustments, etc.
5. Newsletter – Please consider integration with newsletter like mail chimp and integration with contact form. Also would be nice to see login area and newsletter sign-up panels.
6. Theme Support – Please consider a different forum area for support. Seems like you can’t add attachments or screen shots, edit existing posts, etc. Seems very outdated as compared to other CMS forums.
=====
Hello.
1. Small fixed header with social icons and menu. With the option to have just the header (logo + menu) part fixed and shrinking.
2. Better mobile menu, like others have mentioned. Perhaps off canvas style.
3. Colored Section that works with side bar not just full width.
4. Masonry option style for both portfolio and blog items.
Please consider an option to have a separator line style between sidebar items, like between categories and latest posts, etc. Would also be nice to apply a colored section for sidebar sections and maybe more title options for sidebar modules. Thanks.
================
By the way, I hope the Ajax Portfolio is implemented like the Choices template, where the item is shown on the same page as the portfolio.
I also really love the hover effect, where the hover overlay follows the cursor movement on the Choices portfolio. Please consider adding this as an option.
Thanks!
=====================
Would really like to see the Breadcrumbs as a short-code. I often you use a header background image with the page title. This does not seem to be an option with the current design. I would like to be able to place the Breadcrumbs above my articles, not to the far right. Thanks.
===============
Would really like to see a Load More function as an option to the portfolio, instead of pagination. This would create a much better user experience and is more in line with current design patterns. And please consider different hover overlays. I like the portfolio item overlay from the Choices theme much better. Thanks.
========================
Breadcrumbs Shortcode – Please consider an option to include “breadcrumbs” as shortcode. I would like to use my own Heading text with background image and then add the breadcrumbs to that image. It would also be nice to place the breadcrumbs in a different position, for example, above the article title. Current design is not very flexible. Thanks.
=======================
Blog Layout – Please include an option for an author block on every post. Seems odd that the blog doesn’t support this. Would also like to see a masonry blog layout. Current grid layout is not useful for images with different sizes and looks kind of bland. Also, why is there a light-box hover on every post image. Should be an option to turn this off.
And please-please consider a “Load More” option for both Portfolio and Blog instead of just next-page pagination. Load More is being used more and more and has a better user experience.
Portfolio Layout – Assuming that the ajax portfolio is coming, please consider the preview panel above the portfolio grid on the same page, or even better, in between (above or below) the item that was selected. Also nice to have a link for preview or full view. For my case, a light-box link is not necessary. And it would be awesome if there were more hover overlay options. Really like the one from Choices theme.
Please improve the page builder so we can edit the code that is produced for each page. This would allow us to enter custom classes for images, for example, custom overlays, etc. Doesn’t seem very open right now and restricts creativity. Thank you. :)
=========
Please add an option to disable the hover lightbox for selected Post / Portfolio images. At least for my case, my sites are based on content and I have no need to use the lightbox on my images. The hover effect is very distracting when trying to read an article. Having an option to selectively set this for each article would be great. Thanks.
========
Regarding the “Load More” function for Portfolio showcase and Blog, have you considered an “Infinite Scroller”? I believe that some of them also offer a manual setting, which would be similar to a “Load More” button. Thanks.
========
Regarding the theme icons, I hope the icon list get’s updated. I definitely prefer font awesome, which I feel has a much better selection of icons, especially for my business. It would also be nice to have the icons as short-codes, so they can be used within the page builder. Of course, it would be nice to select the icon size. I have seen this feature with many of the other themes. Thanks.
=======
Would love to see the breadcrumbs as a short-code, where I can insert into my desired location. Having it in the upper right header, forces me to use the page header. And it’s not the desired location for our users. I prefer to use my own header using the layer slider and hen I can place the breadcrumbs above my articles or anywhere in my header. Thanks..
April 22, 2013 at 2:05 pm #115201In reply to: Header Type: Keep Header with social icons fixed
Hey Sebastian,
Not that I know of right now but you can request additional features here: https://kriesi.at/support/topic/enfold-feature-requests
Regards,
Devin
-
This topic was modified 12 years, 2 months ago by
-
AuthorSearch Results
-
Search Results
-
Is there a way to make it look like theme’s blog format on the front page.
It’s another theme. (don’t worry, i prefer your overall theme much more)
http://para.llel.us/themes/moxie-wp/
Their blogging format is a lot more organized and not as jumbled up.
Which leads me to the second question is there a way to erase the image icon that goes on top of the image?
thanks much andy
Topic: Portfolio with 2 line Title
Hello. It seems like the portfolio item spacing top/bottom is lost when using a title that has more than 1 line of text. Does the css have to be modified to support titles with more than 1 line, for example, 2 lines of text. Thanks.
Topic: Videos and Video Requests
I’m doing some videos showing different layouts that can be built with the new Avia Page Builder. If you have any requests for specific layouts or ideas for me to try I would love to hear them.
Just leave them as a reply here and I will post them when they are done. To keep the topic clean I’ll delete responses but I do have them noted :)
Current videos can be found on the AviaThemes channel here: https://vimeo.com/channels/aviathemes
Install the theme files with FTP - https://vimeo.com/channels/aviathemes/64927356 Update the theme files with FTP - https://vimeo.com/channels/aviathemes/67209750 Intro to the Advanced Layout Editor (short) - https://vimeo.com/channels/aviathemes/64927358 Using the Advanced Layout Editor (long) - https://vimeo.com/channels/aviathemes/64927359 Add the Layout Editor to Custom Post Type & Posts - https://vimeo.com/channels/aviathemes/64996057 Add Google Maps widget to a sidebar - https://vimeo.com/channels/aviathemes/64978020 Make a thumbnail Gallery with the Layout Editor - https://vimeo.com/channels/aviathemes/65208795 From the LayerSlider plugin Authors on using the LayerSlider: http://www.youtube.com/watch?v=ZY9SxVyugx4Regards,
Devin
Hello, I’m AlexiaNin, I tried to put the unfixed header, selecting all the header types, except Small fixed headed, logically, and also I tried in diferent sizes but does not work for me. I like when header with menu scroll dawn when you navigate.
Also my Logo appears not well centered and too much space below than in top, and looks like not so well.
Can you help me?
(Sorry for my poor english)
Thanks.
Topic: Bug with archive pages
I just discovered that when I choose the Grid Layout in the Enfold Blog Style settings, all archive pages stop working. It took me a while to find out why this was happening, but looking at the contents of archive.php gave me a clue…
I would like to use the Grid Layout, but I like having my archive pages even more… Would this be easy to fix?
Cheers,
Sander
