-
AuthorSearch Results
-
July 24, 2013 at 4:12 pm #131111
In reply to: Editor doesn't work/fonts/colors
Hi ctaborda,
There are a couple things to try:
– Make sure you have at least 96mb of php memory available for wordpress. See: http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
– Check that in your wp-content>uploads>dynamic_avia has chmod permissions of 755 and that the files inside of it have at least the same.
– Talk to your host and make sure that you are using regulr CGI and not FASTCGI. Another user recently reported this was causing issues for them.
Regards,
Devin
July 24, 2013 at 10:40 am #26662Topic: Bullet Point Alignment
in forum Enfold500Webmaster
ParticipantHi, when you use the bullet point/numbering formatting options in a text element and the text runs into the next line, is it possible to align it so that the text lines up with where it originally started after the bullet point and not right at the beginning of the line? Such as in the images in this example? http://photoshopcafe.com/cafe/showthread.php?39705-aligning-lines-of-text-when-using-bullets
Thanks
July 24, 2013 at 10:29 am #130797In reply to: Image Sizes for Portfolio Previews
Hi,
You can see all image thumbnail size on functions.php
/*
* Register additional image thumbnail sizes
* Those thumbnails are generated on image upload!
*
* If the size of an array was changed after an image was uploaded you either need to re-upload the image
* or use the thumbnail regeneration plugin: http://wordpress.org/extend/plugins/regenerate-thumbnails/
*/
$avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news
$avia_config['imgSize']['square'] = array('width'=>180, 'height'=>180); // small image for blogs
$avia_config['imgSize']['featured'] = array('width'=>1500, 'height'=>430 ); // images for fullsize pages and fullsize slider
$avia_config['imgSize']['extra_large'] = array('width'=>1500, 'height'=>1500 , 'crop' => false); // images for fullscrren slider
$avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)
$avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns
$avia_config['imgSize']['gallery'] = array('width'=>710, 'height'=>575 ); // images for portfolio entries (2,3 column)
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>270); // big images for blog and page entries
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider
//overwrite blog and fullwidth image on extra large layouts
if(avia_get_option('responsive_layout') == "responsive responsive_large")
{
$avia_config['imgSize']['gallery'] = array('width'=>845, 'height'=>684 ); // images for portfolio entries (2,3 column)
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>845, 'height'=>321); // big images for blog and page entries
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 ); // images for fullsize pages and fullsize slider
}The one use for the portfolio featured image is this:
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>270); // big images for blog and page entries
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize sliderRegards,
Ismael
July 23, 2013 at 5:47 am #130986In reply to: Where to modify wp_mail for contact
Hi,
You can find it on framework > php > class-form-generator.php.
You can use plugins like Contact Form 7 and Gravity Forms.
You should probably use http://wordpress.org/plugins/wp-smtp/, configure it according to your mail server.
Refer to this link: https://kriesi.at/support/topic/contact-form-does-not-work
Regards,
IsmaelJuly 23, 2013 at 5:38 am #130977In reply to: REWARD: for sidebar top on mobile screens
Hi,
This will require a lot of modifications. Example for the pages, you need to edit page.php or template-builder.php (if you’re using the Advance Layout Editor). Create a page using the default editor, set a Right Sidebar. Edit page.php, find the code that renders the sidebar:
<?php<br /> <br /> //get the sidebar<br /> $avia_config['currently_viewing'] = 'page';<br /> get_sidebar();<br /> <br /> ?>Place it on top of the loop’s container:
<div class='template-page content <?php avia_layout_class( 'content' ); ?> units'>Add this on your custom.css:
#top #main .sidebar {<br /> float: right;<br /> width: 269px;<br /> }And this one to make sure it is visible on mobile devices
/*<br /> Mobile Styles<br /> ================================================== */<br /> /* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */<br /> <br /> @media only screen and (max-width: 767px) {<br /> /* Add your Mobile Styles here */<br /> .responsive #top #main .sidebar {display:block; }<br /> }We’re only talking about the Page made using the Default editor. You still have posts, products, portfolios and pages with Advance Layout Editor. And it might require some Media Queries to correct the layout for screen widths.
Send me an email on //…
Regards,
IsmaelJuly 22, 2013 at 6:52 pm #26591Topic: Portfolio 6 columns
in forum Enfoldericgmbh
ParticipantHi,
thank you for the great theme,
however I would like to make the portfolio being able to display in 6 columns so all 6 drivers on this page are in one line: http://www.lpgruppe.com/scuderiacorsa/?page_id=20
I have managed to edit with the following:
Edit config-templatebuilder > avia-shortcodes > portfolio.php, find this code on line 70:
/* __(‘5 Columns’, ‘avia_framework’ )=>’5′, */
Replace it with
__(‘5 Columns’, ‘avia_framework’ )=>’5′,
but then if I try the same for 6 columns it doesn’t work as expected or I think that I need additional CSS somewhere.
Could you please point me where can I tweak in order to achieve the desired effect?
Thank you in advance!,
Regards,
Mihail
July 20, 2013 at 7:25 pm #130004In reply to: how to host entypo-fontello files on CDN?
Hi,
You can do this to add additional css files. Lets say for this example you want to add a file called mycss.css. You should first upload it using ftp to your cdn or wherever your want to keep it , and copy the url of where your css file is located. Lets say http://cdn.your-domain.com/css/mycss.css is where you placed it. Now you can open up functions.php and find line 234 that looks like
//register stylesThen you will need to add the following to line 233, before the above line. dont forget to edit the url and replace my example with wherever your css file is located
wp_register_style( 'mycss-custom', "http:/cdn.your-domain.com/css/mycss.css", array(), '1', 'screen' );Then you will need to go to line 217 of the same file and add the code below to it. (You will see there are a few similar looking lines of code located there. Dont change the mycss-custom in the above or below code, only change the url
wp_enqueue_script( 'mycss-custom' );Thanks,
Nick
July 20, 2013 at 11:46 am #130313In reply to: swap blog featured image and headline
Hi,
Edit includes > loop-index.php, remove everything then replace it with this: http://pastebin.com/7aeHbf1h
Regards,
Ismael
July 20, 2013 at 11:21 am #130548In reply to: Question about dynamic-css.php
Hey!
Try to change the folder permission of wp-contentuploadsdynamic_avia to 777.
Regards,
Peter
July 19, 2013 at 2:38 pm #26476Topic: Question about dynamic-css.php
in forum EnfoldThisafternoon
ParticipantHi guys,
I read somewhere in this forum that all styling options in Enfold are saved in dynamic-css.php
On my test server this is working great, but somehow on the live server (different provider) I cannot save changes I make in Enfold > Styling… all other settings (General Settings, Header, etc) do get saved, but the Styling / Quick CSS don’t…
I’ve already changed the permissions of this php file to 777, but this doesn’t make a difference…
Anything else I can try?
best regards,
Bas
July 18, 2013 at 8:17 pm #130041In reply to: Add a second logo to header
Hi,
Open up header.php and find this line somewhere toward the bottom of the page that looks like
<!-- end container-->now paste the code below before or after this line, just substitute the 2 urls.
<strong class="logo2">
<a href="URL OF LINK"><img src="URL OF IMAGE" alt=""></a>
</strong>Now add the following css to quick css or to /css/custom.css file
strong.logo2 {
position: relative;
float: right;
}Now to move the menu add this css, but you will need to play around with the number in the media query (as well as make your logo smaller)
.main_menu {
left: 19em;
}
@media only screen and (min-width: 768px) and (max-width: 989px) {
.main_menu {
left: 12em;
}}You will need at the end to add a few lines in /js/avia.js since as you can see the left logo shrinks when you scroll down the page, and the right logo will not do that by itself. Once you finish these steps let us know.
Thanks,
Nick
July 18, 2013 at 6:26 am #129928In reply to: Postslider bug
1) Can you post a link to the homepage please?
2) You can use the excerpt field

to enter a manual excerpt. If some words are bold in the generated excerpt it’s probably a problem of missing closing strong tags in the excerpt text. We’ll fix this problem in the next update, for now open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodespostslider.php and replace
$prepare_excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate($entry->post_content, apply_filters( 'avf_postgrid_excerpt_length' , 60) , apply_filters( 'avf_postgrid_excerpt_delimiter' , " "), "…", true);with
$prepare_excerpt = !empty($entry->post_excerpt) ? $entry->post_excerpt : avia_backend_truncate(strip_tags($entry->post_content,''), apply_filters( 'avf_postgrid_excerpt_length' , 60) , apply_filters( 'avf_postgrid_excerpt_delimiter' , " "), "…", true);July 18, 2013 at 5:44 am #129523Hi,
Sorry for that.
Edit includes > loop-index.php, find this code
if(strpos($blog_style, 'multi') !== false)
{
$gravatar = "";
$link = get_post_format_link($post_format);
if($post_format == 'standard')
{
$gravatar = get_avatar( get_the_author_meta('email'), '75', "blank" );
$link = get_author_posts_url($post->post_author);
}
echo "<a href='{$link}' class='post-author-format-type'><span class='rounded-container'>".$gravatar.$icon."</span></a>";
}
else if(strpos($blog_style, 'small') !== false)
{
echo "<a href='{$link}' class='small-preview'>".$slider.$icon."</a>";
}Below, add this code
if(strpos($blog_style, 'multi') !== true)
{
$gravatar = "";
$link = get_post_format_link($post_format);
if($post_format == 'standard')
{
$gravatar = get_avatar( get_the_author_meta('email'), '75', "blank" );
$link = get_author_posts_url($post->post_author);
}
echo "<a href='{$link}' class='post-author-format-type'><span class='rounded-container'>".$gravatar.$icon."</span></a>";
}
else if(strpos($blog_style, 'small') !== true)
{
echo "<a href='{$link}' class='small-preview'>".$slider.$icon."</a>";
}Regards,
Ismael
July 17, 2013 at 1:48 am #129982In reply to: Custom layout not listed
Hi freeethinka,
I’m not really clear on what you mean. Anything you make in a Advanced Layout Editor is only accessible from the Advanced Layout Editor. So if you save a template then it would be available from the same menu where the template was saved (the top right of the advanced layout editor interface).
The page templates available from the Page Attributes meta box are php files within the theme files.
Try watching the short intro video on the Advanced Layout Editor here for a general idea on how it functions: https://vimeo.com/channels/aviathemes/64927358
Regards,
Devin
July 16, 2013 at 8:15 am #129000In reply to: Portfolio "Next" points to last instead of next
Afaik it’s not possible to change the order because we use the standard get_previous_post() and get_next_post() wp functions to output the next/previous posts and there’s no parameter to control the order. Even the “post order” plugin won’t work because WP uses a hardcoded sql query and not WP_Query. This probably will change with WP3.7 ( http://core.trac.wordpress.org/ticket/17807 )
If you want to remove the next/previous links open up footer.php and delete
echo avia_post_nav();July 15, 2013 at 2:05 pm #114726In reply to: Enfold Feature Requests
my suggestions for theme improvement :
1. support of wp envato kit – for easy theme updates
2. an easy way to change the default circle+arrow hover effect on portfolio/blog thumbs ? (change shape/icon would be just awesome !!!)
3. load from admin panel custom fonts (espec. for your international multi-lingual clients)
4. load from admin panel any google font w/subset selection (eg. cyrillic, greek etc)
5. change image thumbs sizes from admin panel (and not editing php files)
6. sticky header of page builder so it stays viewable in long pages when scrolling down
7. more options in theme panel for styling (font sizes, shortcodes/builder elements colors etc)
8. ability to create new styles (w/o overwriting existing ones)
9. import/export all theme options (incl. styles)
thx for your great work!
July 13, 2013 at 7:23 am #129315In reply to: Images / Thumbnail sizes in blog and portfolio
Hi,
You can find the thumbnail sizes on functions.php, find this codes
$avia_config['imgSize']['widget'] = array('width'=>36, 'height'=>36); // small preview pics eg sidebar news
$avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>270); // big images for blog and page entries
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider
$avia_config['imgSize']['square'] = array('width'=>180, 'height'=>180); // small image for blogs
$avia_config['imgSize']['featured'] = array('width'=>1500, 'height'=>430 ); // images for fullsize pages and fullsize slider
$avia_config['imgSize']['extra_large'] = array('width'=>1500, 'height'=>1500 , 'crop' => false); // images for fullscrren slider
$avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)
$avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns
$avia_config['imgSize']['gallery'] = array('width'=>710, 'height'=>575 ); // images for portfolio entries (2,3 column)You can adjust the max-height of portfolio thumbnails with css.
.attachment-portfolio.wp-post-image {
max-height: 150px;
}Regards,
Ismael
July 11, 2013 at 7:46 pm #128994In reply to: Contact forms not working
Hi CooperDevon,
If you are unable to send email from either the themes form or from another plugin, there may be an issue with your server configuration for outgoing mail.
Try contacting your hosting provider to see if they have any issues with the php mail function, wordpress’ own mail function or any kind of anti spam settings in place to prevent outgoing mail from addresses that aren’t based from the sending domain.
Also make sure you are on Enfold version 1.7.1 as there was some bug fixes released with that version as well.
Regards,
Devin
July 11, 2013 at 4:26 am #129023In reply to: Enfold > Post slider > number of columns
Hi,
Upgrade to Enfold 1.7. It will fix the issue.
OR
Edit wp-contentthemesenfoldconfig-templatebuilderavia-shortcodes > postslider.php, find this code
"subtype" => array( __('1 Columns', 'avia_framework' )=>'1',
__('2 Columns', 'avia_framework' )=>'2',
__('3 Columns', 'avia_framework' )=>'3',
__('4 Columns', 'avia_framework' )=>'4',
__('5 Columns', 'avia_framework' )=>'5',
)),The array 1 Columns should be equal to 1.
array( __('1 Columns', 'avia_framework' )=>'1'Regards,
Ismael
July 11, 2013 at 4:13 am #128762In reply to: addthis Social Share html
Hi,
First go to the Add this plugin dashboard. Settings > Addthis Share. Fill in the AddThis Profile ID: then login using your Addthis account. Get the Addthis API code on your actual addthis account. Sign in here: https://www.addthis.com/login
<!-- AddThis Button BEGIN -->
<div class="addthis_toolbox addthis_default_style ">
<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
<a class="addthis_button_tweet"></a>
<a class="addthis_button_pinterest_pinit"></a>
<a class="addthis_counter addthis_pill_style"></a>
</div>
<script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-51de2d2b7e09a8f5"></script>
<!-- AddThis Button END -->Edit wp-contentthemesenfoldconfig-templatebuilderavia-shortcodes > portfolio.php, find this code.
$output .= "<h2 class='portfolio-preview-title'><a href='{$link}'>".$entry->post_title."</a></h2>";Below, add the addthis api code with some modifications.
$output .= '<!-- AddThis Button BEGIN -->';
$output .= '<div class="addthis_toolbox addthis_default_style ">';
$output .= '<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a';
$output .= '<a class="addthis_button_tweet"></a>';
$output .= '<a class="addthis_button_pinterest_pinit"></a>';
$output .= '<a class="addthis_counter addthis_pill_style"></a>';
$output .= '</div>';
$output .= '<!-- AddThis Button END -->';After that, open footer.php, find this code
<a href='#top' id='scroll-top-link' class='avia-font-entypo-fontello'></a>Below, add the addthis javascript code with your unique profile id. It will look something like this.
<script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-51de2d2b7e09a8f5"></script>We got the code from the original API code.
If you successfully did the instructions above, you will have the addthis button below the portfolio title.
Regards,
Ismael
July 11, 2013 at 3:37 am #128809Devin,
Thank you for getting back to me.
Here is a screen shot of what I woud like to accomplish…
http://servingdope.com/wp-content/uploads/2013/07/Screen-Shot-2013-07-10-at-23.08.17.png
In addition I would like to add a short separator after each blog post excerpt in the center if that is at all possible to do.
Where am I adding the overly large border radius in the style.php? I am clueless:( lol
Jessica
PS. I forgot to add I am using a child theme.
July 11, 2013 at 2:55 am #129084In reply to: ENFOLD: how to give the combo widget a widget title?
Hi,
@formateins: Thanks for the tip.
@colorit2: You can edit framework > php > class-framework-widgets.php, remove everything then replace with this code: http://pastebin.com/s77nHLeV
Regards,
Ismael
July 10, 2013 at 2:23 pm #128882In reply to: Advanced Editor Corrupt or Not Working
If you’ve a PHP memory limit of 128M, why do you decrease it in your wp-config? Remove the line, it won’t help. :)
Anyways 64M is rather low. I do use Enfold with WPML and it soakes 67M in Peak… this has driven me crazy, because of a misbehaviour of my server skeleton.
Another hint: Enfold does have a debug-feature. Open up config-templatebuilder/config.php and change
$builder->setMode( 'safe' );to
$builder->setMode( 'debug' );This enables a simple input area in posts below the builder (it must be enabled) and you may modify the values right there. It’s also an option to copy contents of the builder to other pages (e.g. dev > live) without using the template stuff.
Won’t solve your individual probs, but worth a shot.
Always check the options tab (this saves sometimes a lot of time and nags). ;)
July 10, 2013 at 8:31 am #128475In reply to: Support Polish characters.
See https://kriesi.at/support/topic/custom-font-with-cyrillic-symbols – you can add a new font or overwrite an existing font – a list of all supported fonts can be found in wp-contentthemesenfoldincludesadminregister-admin-options.php
'Alice'=>'Alice',
'Allerta'=>'Allerta',
'Arvo'=>'Arvo',
'Antic'=>'Antic',
'Bangers'=>'Bangers',
'Bitter'=>'Bitter',
'Cabin'=>'Cabin',
'Cardo'=>'Cardo',
'Carme'=>'Carme',
'Coda'=>'Coda',
'Coustard'=>'Coustard',
'Gruppo'=>'Gruppo',
'Damion'=>'Damion',
'Dancing Script'=>'Dancing Script',
'Droid Sans'=>'Droid Sans',
'Droid Serif'=>'Droid Serif',
'EB Garamond'=>'EB Garamond',
'Fjord One'=>'Fjord One',
'Inconsolata'=>'Inconsolata',
'Josefin Sans' => 'Josefin Sans',
'Josefin Slab'=>'Josefin Slab',
'Kameron'=>'Kameron',
'Kreon'=>'Kreon',
'Lobster'=>'Lobster',
'League Script'=>'League Script',
'Mate SC'=>'Mate SC',
'Mako'=>'Mako',
'Merriweather'=>'Merriweather',
'Metrophobic'=>'Metrophobic',
'Molengo'=>'Molengo',
'Muli'=>'Muli',
'Nobile'=>'Nobile',
'News Cycle'=>'News Cycle',
'Open Sans'=>'Open Sans:400,600',
'Orbitron'=>'Orbitron',
'Oswald'=>'Oswald',
'Pacifico'=>'Pacifico',
'Poly'=>'Poly',
'Podkova'=>'Podkova',
'PT Sans'=>'PT Sans',
'Quattrocento'=>'Quattrocento',
'Questrial'=>'Questrial',
'Quicksand'=>'Quicksand',
'Raleway'=>'Raleway',
'Salsa'=>'Salsa',
'Sunshiney'=>'Sunshiney',
'Signika Negative'=>'Signika Negative',
'Tangerine'=>'Tangerine',
'Terminal Dosis'=>'Terminal Dosis',
'Tenor Sans'=>'Tenor Sans',
'Varela Round'=>'Varela Round',
'Yellowtail'=>'Yellowtail',Eg if you want to use Open Sans with “Latin Extended subset” characters add following code to the bottom of functions.php:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
function avia_add_heading_font($fonts)
{
$fonts['Open Sans'] = 'Open Sans:400,700,400italic,700italic&subset=latin,latin-ext';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Open Sans'] = 'Open Sans:400,700,400italic,700italic&subset=latin,latin-ext';
return $fonts;
}Note: Not all google fonts support all subsets. You can search for fonts which support “latin extended” characters here: http://www.google.com/fonts/
July 10, 2013 at 7:19 am #128626In reply to: Ajax Search – Translation handling probs…
Hi,
I think Dude has the right way to go about this. Calendar plugin used a similar approach http://trac.theseednetwork.com/ticket/251 For me all the German words are static (in the sense that its always the same set of words in the same positions http://i.imgur.com/LaUGYv6.png these two words, and another phrase blinking quickly sometimes…) so worse comes to worse can even come up with a quick hack and add it right into the do_search function on line 913 of avia.js . Can possibly pull them into the php page (functions_enfold.php line 157, since one of the german words is just a single line above it i believe, the one in h4 tags).
Thanks,
Nick
July 10, 2013 at 5:53 am #128726In reply to: Header & Footer PHP + CSS Issues
1) The footer code is quite different because we added some new functions & options to the footer (eg you’re now able to hide the widget columns or the socket (copyright area) on individual pages) and it’s probably not possible to copy/paste the old code without breaking these features. I’d recommend to ask your developer to check the new footer.php code and to rewrite his code if necessary.
2) Yes, you can change the icon hover color with following code – insert it into the quick css field
#top .social_bookmarks_rss:hover a{color:#fff; background-color:#ffa133; }
#top .social_bookmarks_facebook:hover a{color:#fff; background-color:#37589b; }
#top .social_bookmarks_twitter:hover a{color:#fff; background-color:#46d4fe; }
#top .social_bookmarks_mail:hover a{color:#fff; background-color:#9fae37; }
#top .social_bookmarks_dribbble:hover a{color:#fff; background-color:#e44885; }
#top .social_bookmarks_linkedin:hover a{color:#fff; background-color:#419cca; }
#top .social_bookmarks_search:hover a{color:#fff; background-color:#222222; }
#top .social_bookmarks_gplus:hover a{color:#fff; background-color:#de5a49; }
#top .social_bookmarks_behance:hover a{color:#fff; background-color:#008cfa; }
#top .social_bookmarks_flickr:hover a{color:#fff; background-color:#ff0086; }
#top .social_bookmarks_forrst:hover a{color:#fff; background-color:#234317; }
#top .social_bookmarks_myspace:hover a{color:#fff; background-color:#000000; }
#top .social_bookmarks_tumblr:hover a{color:#fff; background-color:#345574; }
#top .social_bookmarks_vimeo:hover a{color:#fff; background-color:#31baff; }
#top .social_bookmarks_youtube:hover a{color:#fff; background-color:#a72b1d; }
#top .social_bookmarks_pinterest:hover a{color:#fff; background-color:#cb2027; }
#top .social_bookmarks_skype:hover a{color:#fff; background-color:#12a5f4; }
#top .social_bookmarks_instagram:hover a{color:#fff; background-color:#a67658; }You can change the social icons bar color with
.header_color .container_wrap_meta {
background: #f8f8f8;
}July 9, 2013 at 5:39 pm #123196In reply to: LEFT MENU LISTING PROBLEM
Hi,
Check every box on that page. ‘Tatisma’ on your image should be the correct one, since it is number 5 checkbox counting from the end , and you checked number 4 from the end which is Comments, and not Discussion.
To completely remove comments from everywhere, please open up single.php in main theme folder, and find line 43 , and add two forward slashes // to it so that it will look like this
// comments_template( '/includes/comments.php');—
The icons are not images, but are a special font , and are called glyphs. I had a page made where I showed how to add any glyph from http://www.fontello.com (where all the glyphs can be found) directly to the theme. In my example I add a yahoo icon, but it will work the same way with any icon. https://kriesi.at/support/topic/youtube-icon#post-117381
Thanks,
Nick
July 9, 2013 at 6:59 am #128651In reply to: BUMP: Advanced Layout Editor Issue NOT resolved
Hi,
Download the latest version of Enfold again, which 1.7. Install it on WordPress 3.5 or higher. Increase the wordpress php memory limit.
http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Regards,
Ismael
July 9, 2013 at 6:53 am #128205In reply to: Advanced Layout Editor corrupted or missing code?
Hi,
Download the latest version of Enfold again, which 1.7. Install it on WordPress 3.5 or higher. Increase the wordpress php memory limit.
http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Regards,
Ismael
July 8, 2013 at 2:50 pm #128123In reply to: QUFORM its my 4th topic and nobody answer me
Hi,
The problem are empty lines in the javascript being echoed in php in the plugin. Lets look at this one, http://prntscr.com/1e80m1 , the code that creates this jquery is in /includes/form.php (inside the plugin folder) and these are the lines http://i.imgur.com/vtPkr2F.png As you can see, the paragraph tags are exactly where there are empty lines in the code. If you open the /includes/form.php file, and remove those 2 empty lines , 35 and 37. You will not get http://prntscr.com/1e80m1 this problem anymore.
That file form.php has other blank lines (empty lines) as well, just go through it and take them out, and that’s all. Takes 1 minute or less.
Thanks,
Nick
-
AuthorSearch Results
-
Search Results
-
Topic: Bullet Point Alignment
Hi, when you use the bullet point/numbering formatting options in a text element and the text runs into the next line, is it possible to align it so that the text lines up with where it originally started after the bullet point and not right at the beginning of the line? Such as in the images in this example? http://photoshopcafe.com/cafe/showthread.php?39705-aligning-lines-of-text-when-using-bullets
Thanks
Topic: Portfolio 6 columns
Hi,
thank you for the great theme,
however I would like to make the portfolio being able to display in 6 columns so all 6 drivers on this page are in one line: http://www.lpgruppe.com/scuderiacorsa/?page_id=20
I have managed to edit with the following:
Edit config-templatebuilder > avia-shortcodes > portfolio.php, find this code on line 70:
/* __(‘5 Columns’, ‘avia_framework’ )=>’5′, */
Replace it with
__(‘5 Columns’, ‘avia_framework’ )=>’5′,
but then if I try the same for 6 columns it doesn’t work as expected or I think that I need additional CSS somewhere.
Could you please point me where can I tweak in order to achieve the desired effect?
Thank you in advance!,
Regards,
Mihail
Hi guys,
I read somewhere in this forum that all styling options in Enfold are saved in dynamic-css.php
On my test server this is working great, but somehow on the live server (different provider) I cannot save changes I make in Enfold > Styling… all other settings (General Settings, Header, etc) do get saved, but the Styling / Quick CSS don’t…
I’ve already changed the permissions of this php file to 777, but this doesn’t make a difference…
Anything else I can try?
best regards,
Bas
