Viewing 30 results - 16,711 through 16,740 (of 16,897 total)
  • Author
    Search Results
  • #131111

    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

    #26662

    Topic: Bullet Point Alignment

    in forum Enfold
    500Webmaster
    Participant

    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

    #130797

    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 slider

    Regards,

    Ismael

    #130986

    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,
    Ismael

    #130977

    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,
    Ismael

    #26591

    Topic: Portfolio 6 columns

    in forum Enfold
    ericgmbh
    Participant

    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

    #130004

    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 styles

    Then 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

    #130313

    Hi,

    Edit includes > loop-index.php, remove everything then replace it with this: http://pastebin.com/7aeHbf1h

    Regards,

    Ismael

    #130548

    Hey!

    Try to change the folder permission of wp-contentuploadsdynamic_avia to 777.

    Regards,

    Peter

    #26476
    Thisafternoon
    Participant

    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

    #130041

    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

    #129928

    In 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);

    Hi,

    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

    #129982

    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

    #129000

    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();

    #114726

    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!

    #129315

    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

    #128994

    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

    #129023

    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

    #128762

    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

    Devin,

    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.

    #129084

    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

    #128882

    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). ;)

    #128475

    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/

    #128626

    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

    #128726

    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;
    }

    #123196

    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

    #128651

    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

    #128205

    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

    #128123

    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

Viewing 30 results - 16,711 through 16,740 (of 16,897 total)