-
AuthorSearch Results
-
July 19, 2013 at 2:38 pm #26476
Topic: 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
July 8, 2013 at 12:29 pm #127900In reply to: Newbie looking for a little help… pt2
Thanks heaps for 3, 6 and 8. They worked great.
A bit of a bummer around 1, 5 and 7 :(
Is there anything simple I could do with sidebar.php or single.php to fix #5? I can live without social icons, and hopefully the feature gets added to alter news item height, but the sidebar issue is a huge pain.
I guess I could force a blank sidebar on the single blog page or something like this?
Cheers,
Jason
July 8, 2013 at 6:00 am #128416In reply to: Something is wrong with the text editor
Hi,
Do you have Enfold 1.7? Your wordpress version should be 3.5 or higher.
Allocate more php memory.
http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Regards,
Ismael
July 6, 2013 at 9:31 pm #128233Hi lelefioroni,
I’m not sure how that could or should be happening since the theme just uses the wordpress image modal. There are a few things you can try however: disable any active plugins you have running and try things again, make sure you have the most recent theme version installed (1.7.1 as of right now) and last is to increase your php memory using one or all of these methods http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/ .
Regards,
Devin
July 6, 2013 at 9:59 am #127490In reply to: HOW TO – ADD A CUSTOM FONT ?
hummm i mean for fonts that are not listed in your register-admin-options.php
By example, i want add a font from http://www.dafont.com that is not listed in your file nor website.
How can i add it here? Just uploading it somewhere & editing the CSS to select in admin of the theme?
& if i want add a Helvetica Neue Bold 57, different version of your Helvetica, how to do it ?
I understood for any google font & i thank you for this.
Tell me more for any dafont free front or helvetica variance
July 6, 2013 at 7:03 am #128121In reply to: QUFORM its my 4th topic and nobody answer me
You can try this fix: https://kriesi.at/support/topic/quform-its-my-4th-topic-and-nobody-answer-me#post-122772 or open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodestextblock.php and replace
return "<div class='avia_textblock'>".wpautop( ShortcodeHelper::avia_remove_autop($content) )."</div>";with
return "<div class='avia_textblock'>".ShortcodeHelper::avia_remove_autop($content)."</div>";This modification will remove the wpautop() function/filter which adds p tags to the content. Maybe this will also fix the conditional logic issue.
July 5, 2013 at 10:59 am #126841In reply to: How to change email sender name
Hi Agnes,
To change the from field please open up /framework/php/class-form-generator and find line 450 , 453, 457
Line 453 which looks like
if(!empty($default_from['host'])) $from = "no-reply@".$default_from['host'];you can change to
if(!empty($default_from['host'])) $from = " (Email address hidden if logged out) ";and 457 you can change from
$from = $_POST[$this->autoresponder[0]];to
$from = " (Email address hidden if logged out) ";Though I am not sure which one you would need . I would change all 3 and do a test and do a second test without 453 changed , to see that it performs how you need it to.
Thanks,
Nick
July 5, 2013 at 6:28 am #127897In reply to: Newbie looking for a little help… pt2
Hi,
1.) Is this the Post slider? Download Enfold 1.7, you can select more options for “Title and Excerpt”.
2.) Glad you figure this out.
3.) You’re twitter widget looks ok.
4.) – – – –
5.) You can create a New Shop Page, select “No sidebar”, insert the woocommerce shortcodes. Select this page as the default shop page on Woocommerece > Settings > Pages > Shop Base Page.
6.) You can set a minimum height on your custom.css or Quick CSS
.pricing-table li {
min-height: 80px;
}7.) Edit footer.php, find this code
<span class='copyright'><?php echo $copyright . $kriesi_at_backlink; ?></span>Replace it with:
<span class='copyright'><?php echo $copyright . $kriesi_at_backlink; ?></span>
<?php $social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => ''); avia_social_media_icons($social_args); ?>8.) Please give us a screenshot because I can’t see the issue. Thanks.
Regards,
Ismael
July 4, 2013 at 6:53 pm #25766Topic: Error Codes Once installed
in forum Enfoldmedical1
ParticipantWarning: Missing argument 1 for get_post(), called in /home/content/45/8955845/html/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 128 and defined in/home/content/45/8955845/html/wp-includes/post.php on line 371
Warning: Missing argument 1 for get_post(), called in /home/content/45/8955845/html/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 128 and defined in/home/content/45/8955845/html/wp-includes/post.php on line 371
Fatal error: Call to undefined function wp_get_theme() in /home/content/45/8955845/html/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 1168
It will not show me a preview just the error message above in the pop-up window once installed.
July 3, 2013 at 7:57 pm #25723Topic: Enfold WPML and All-in-One Event Calendar by Timely
in forum Enfoldmentadata
ParticipantWe bought the Enfold theme, the WPML and All-in-One Event Calendar.
We setup all the products in Local machine Windows7, apache 2.2. php 5.4. All working fine
But when we put all the data in our ISP (linux, Apache 2.22 php 5.4.) The calendar was deformed the selection (day, week,…)
In this ISP we have serveral sites an all working fine (with other themes)
This two plugins (WPML and All-in-One Event Calendar by Timely) ara mandatory for this site, and this calendar is compatible with WPML (the unique)
We have another installation in the same ISP with other theme (Kallyas) and the All-in-One Event Calendar works fine.
-
AuthorSearch Results
-
Search Results
-
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
Topic: Error Codes Once installed
Warning: Missing argument 1 for get_post(), called in /home/content/45/8955845/html/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 128 and defined in/home/content/45/8955845/html/wp-includes/post.php on line 371
Warning: Missing argument 1 for get_post(), called in /home/content/45/8955845/html/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 128 and defined in/home/content/45/8955845/html/wp-includes/post.php on line 371
Fatal error: Call to undefined function wp_get_theme() in /home/content/45/8955845/html/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 1168
It will not show me a preview just the error message above in the pop-up window once installed.
We bought the Enfold theme, the WPML and All-in-One Event Calendar.
We setup all the products in Local machine Windows7, apache 2.2. php 5.4. All working fine
But when we put all the data in our ISP (linux, Apache 2.22 php 5.4.) The calendar was deformed the selection (day, week,…)
In this ISP we have serveral sites an all working fine (with other themes)
This two plugins (WPML and All-in-One Event Calendar by Timely) ara mandatory for this site, and this calendar is compatible with WPML (the unique)
We have another installation in the same ISP with other theme (Kallyas) and the All-in-One Event Calendar works fine.
