Viewing 30 results - 16,681 through 16,710 (of 16,888 total)
  • Author
    Search Results
  • #27017
    NCornelius
    Participant

    Had created a few slides using LayerSlider and at first things were working fine, and as of last Thursday, our slides started losing the text headings.

    1) Have disabled every plugin – no change

    2) Disabled the background – text reappears

    3) Changed to a different file for the background – text disappears again.

    4) Tried Enfold’s demo slide – first page works fine as logo and text is actually a graphic, but 2nd page only shows the screens and screen elements. Text blocks to the left don’t appear – no edits were done to the default demo slide.

    5) Have tried Ismael’s suggestion in an earlier issue to up the memory to 256M – no change

    6) Have asked the web hosts if they made any changes or updates to the server software or settings – they assure me they have not.

    7) Have gotten the web hosts to restart our server – no change

    8) Have checked text content layers – Using <div> as per the Enfold demo, no change, using H1, H2, etc, text appears in the preview, but not on the site.

    9) Have tried removing custom styles – no change

    10) Have deactivated my child theme – no change

    As far as I can tell, nothing has changed from my perspective except the backend PHP tweaks for iconbox.

    Would be nice if there was a fix for this.

    #133162

    Hi eakozel,

    Try adding this function to the bottom of your functions.php file and define your placeholder with it:

    /*
    * goes in theme functions.php or a custom plugin. Replace the image filename/path with your own :)
    *
    **/
    add_action( 'init', 'custom_fix_thumbnail' );

    function custom_fix_thumbnail() {
    add_filter('woocommerce_placeholder_img_src', 'custom_woocommerce_placeholder_img_src');

    function custom_woocommerce_placeholder_img_src( $src ) {
    $upload_dir = wp_upload_dir();
    $uploads = untrailingslashit( $upload_dir['baseurl'] );
    $src = $uploads . '/2012/07/thumb1.jpg';

    return $src;
    }
    }

    You just need to replace /2012/07/thumb1.jpg with the route to your image in your uploads folder. So something like /2013/08/yourimagename.jpg .

    Regards,

    Devin

    #27196
    energetic2013
    Participant

    I just installed the theme.

    After activating I got the following error message when I go to any page.

    I wast using Central theme before with pagebuilder plugin. any suggestions?

    Warning: session_start() [function.session-start]: SAFE MODE Restriction in effect. The script whose uid is 5060 is not allowed to access /tmp owned by uid 0 in /home/wikifcco/public_html/nitzaflantz.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php on line 27

    Fatal error: session_start() [function.session-start]: Failed to initialize storage module: files (path: ) in /home/wikifcco/public_html/nitzaflantz.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php on line 27

    #131770

    Hi,

    Now you should check what you did and do it again, because this works 110%.

    These are lines 25 – 27 of single-portfolio.php

    $avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
    get_template_part( 'includes/loop', 'portfolio-single' );
    ?>

    Delete all three of the above lines and in their place paste this

    $avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
    get_template_part( 'includes/loop', 'portfolio-single' );
    comments_template( '/includes/comments.php');
    ?>

    Thanks,

    Nick

    #132879

    Ok so I need to add this in the child function.php for all sizes (of course changing the sizes to what I want):

    <?php

    function avia_change_image_size_array() {

    global $avia_config;

    $avia_config = array(‘width’=>36, ‘height’=>36); // small preview pics eg sidebar news

    $avia_config = array(‘width’=>180, ‘height’=>180); // small image for blogs

    $avia_config = array(‘width’=>1500, ‘height’=>1001 ); // images for fullsize pages and fullsize slider

    $avia_config = array(‘width’=>1500, ‘height’=>1500 , ‘crop’ => false); // images for fullscrren slider

    $avia_config = array(‘width’=>495, ‘height’=>330 ); // images for portfolio entries (2,3 column)

    $avia_config = array(‘width’=>260, ‘height’=>173 ); // images for portfolio 4 columns

    $avia_config = array(‘width’=>710, ‘height’=>474 ); // images for portfolio entries (2,3 column)

    $avia_config = array(‘width’=>710, ‘height’=>270); // big images for blog and page entries

    $avia_config= array(‘width’=>1030, ‘height’=>687 ); // images for fullsize pages and fullsize slider

    }

    add_action( ‘init’, ‘avia_change_image_size_array’);

    What about the overwrite for the extra large layouts? How do I write this in also.

    //overwrite blog and fullwidth image on extra large layouts

    if(avia_get_option(‘responsive_layout’) == “responsive responsive_large”)

    {

    $avia_config = array(‘width’=>845, ‘height’=>564 ); // images for portfolio entries (2,3 column)

    $avia_config = array(‘width’=>845, ‘height’=>321); // big images for blog and page entries

    $avia_config= array(‘width’=>1210, ‘height’=>807 ); // images for fullsize pages and fullsize slider

    }

    Hi!

    I found this thread: http://stackoverflow.com/questions/11453487/xampp-and-file-get-contentshttps – maybe it’s a server configuration issue in your case too.

    Best regards,

    Peter

    #132510

    Hi dstone030777,

    The second line should not be removed as it will cause none of your site styles to load.

    To remove the debugging information you can add this line to the end of your functions.php file:

    remove_action('wp_head','avia_debugging_info',1000);

    Regards,

    Devin

    1) You can use the filter to add new fonts. In functions.php replace

    <?php

    global $avia_config;

    with

    <?php

    global $avia_config;

    add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Arvo'] = 'Arvo:400,700';
    return $fonts;
    }

    add_filter( 'avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Arvo'] = 'Arvo:400,700';
    return $fonts;
    }

    and instead of “Arvo” insert your font name. You can also change the font weight parameter. Afterwards select the new font from the dropdown (admin screen).

    2) Insert following code into the quick css field

    .template-page .entry-content h1, .template-page .entry-content h2, .widgettitle, .iconbox .iconbox_content .iconbox_content_title, .avia-icon-list .iconlist_title{
    text-transform: none;
    }

    Thisafternoon
    Participant

    Hi guys,

    I have selected Lobster for the Heading and Kameron for the body text. This used to work fine, but suddenly they have been replaced by a standard Helvetica:

    http://www.wildbunchindustries.com

    Are these also stored in dynamic-css.php? Or somewhere else? I have already changed the permissions of this file to 777 and I’ve upgraded the theme to 1.8.4

    I think it has something to do with the server settings…

    Regards,

    Bas

    #27031
    Migueldecali89
    Participant

    I tried to install the theme but when I do I get the following errors, what can I do to fix this please?:

    Warning: Missing argument 1 for get_post(), called in /home/smcleod/public_html/mywebaddress.net/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 128 and defined in /home/smcleod/public_html/mywebaddress.net/wp-includes/post.php on line 371

    Warning: Missing argument 1 for get_post(), called in /home/smcleod/public_html/mywebaddress.net/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 128 and defined in /home/smcleod/public_html/mywebaddress.net/wp-includes/post.php on line 371

    Fatal error: Call to undefined function wp_get_theme() in /home/smcleod/public_html/mywebaddress.net/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 1168

    Thank you.

    #132085

    Hello Devin,

    i will try to explain it more detailed. When you watch at the portfolio images at ”Arbeiten” (the small ones which are in the protfolio grid) on a 13 Macbook when they just show up, they will look for a milli second sharp an crisp. After the images are completely loaded you will recognize that they get slightly blurred (you can see it when you refresh the browser and concentrate on the thin lines)

    But when i watch the same grid on a 27 Cinema Display everything looks quite fine. The Big Gallery images are 765 x 400 px and setted on ”no scaling”. I just dont understand why the images loose quality through the responsiveness. I tried many sizes, reuploaded many different sizes, tryed to change the parameters in the functions.php but nothing helped…The strangest thing about it that you can see that the crisp images are there but just for not even a second. Its like wordpress adds a fine blurry filter over the images after the grid is completely loaded!?

    Right now i really don’t know what else to do to reach the highest quality as possible. It would be very nice to have the images in the same quality like i save them in photoshop, on all monitor sizes.

    Do you have any idea? Thanks a lot!

    Spiro

    #131580

    In reply to: Landing page menu

    Hi,

    Your page has multiple javascript errors that need to be fixed. You are using some Moonray Smartform plugin, and all the errors seems to be coming from it:

    Uncaught TypeError: Cannot read property 'formConditions' of undefined jquery.moonray.smartform.js:54

    Uncaught TypeError: Object [object Object] has no method 'moonraySmartForm' genjs-v2.php?html=false&uid=p2c10469f14:72

    Uncaught TypeError: Cannot read property 'formConditions' of undefined jquery.moonray.smartform.js:54

    Uncaught TypeError: Object [object Object] has no method 'moonraySmartForm' genjs-v2.php?html=false&uid=p2c10469f14:72


    This css will take care of that issue for you. Please add it to /css/custom.css OR to Quick CSS.

    .header_color .main_menu ul:first-child > li > a {
    color: #000 !important;
    }

    I dont see the bar below the menu moving anymore, it is always visible now.

    Thanks,

    Nick

    #114955

    Hi,

    @goldbaum: You can find a dutch translation here: http://www.mediafire.com/download.php?cwbpn4yna5wq76n, please contact yingfuli. :)

    https://kriesi.at/support/profile/yingfuli

    Regards,

    Ismael

    #131454

    Hi,

    The file is /framework/php/class-form-generator.php

    And you should look for lines 636-639… 637 is the line where the content of the message gets sets.

    Thanks,

    Nick

    mentadata
    Participant

    We had installed Enfold and WPML. The system works fine.

    But each time we go to Backend WP administration panel –> Appariecnce – > Theme we have the following Warning in the TOP

    Warning: uasort(): Array was modified by the user comparison function in /var/www/vhost/ayuntamientobenisano.es/home/html/wp-includes/class-wp-theme.php on line 1172

    The warning appears when we setup the WPML STRING TRANSLATION (this option is mandatory for our web)

    #26801
    Cameron32
    Participant

    Files uploaded fine, but when I went to activate the theme, I get these error messages, both in my admin and front-end.

    Warning: Missing argument 1 for get_post(), called in /home/content/20/7674220/html/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 128 and defined in /home/content/20/7674220/html/wp-includes/post.php on line 371

    Warning: Missing argument 1 for get_post(), called in /home/content/20/7674220/html/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 128 and defined in /home/content/20/7674220/html/wp-includes/post.php on line 371

    Fatal error: Call to undefined function wp_get_theme() in /home/content/20/7674220/html/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 1168

    Please advise.

    Thanks,

    Cameron

    #131379

    Yes this is possible. You can insert html code into the title fields (eg just insert a simple image html tag: http://www.htmlgoodies.com/primers/html/article.php/3478181/Basic-HTML-Images.htm ) or use the shortcode generator (magic wand icon in the tinymce editor field on the post/page editor screen) to generate a font icon shortcode and insert the shortcode into the title field of the menu item.

    #26790

    Topic: Help!

    in forum Enfold
    kaylakeigley
    Participant

    I recently uploaded the Enfold theme to my site. It shows up when you go to my site, but if I try to go to the dashboard or make any changes at all, I get this message

    Fatal error: Allowed memory size of 41943040 bytes exhausted (tried to allocate 30720 bytes) in /data/20/2/111/5/2763168/user/3037856/htdocs/blog/wp-admin/includes/plugin.php on line 106

    Any ideas? Help please! I love the look of this theme, but want to make it work for my website.

    http://www.fitformoms.com

    #26777
    stunna42
    Participant

    Hi – Please see http://thecaloriemythbook.com. In the promo box “GET YOUR FREE 28 DAY PROGRAM” we have the following HTML form code. Two things:

    1. If we wrap the code below in <p> tags everything works fine, however, after saving, the <p> tags are automatically stripped and the problem I’m about to describe happens

    2. Including that HTML causes the following Quotes and all subsequent pictures not to display on the page. Again, these problems do not happen if the form HTML is wrapped in <p> tags, but this isn’t a viable work around as these tags are removed automatically when the page is updated.

    How can we leverage this form HTML while not compromising the rest of the page? Thank you.

    <link href=”//www1.moon-ray.com/formeditor/formeditor/css/form.default.css” rel=”stylesheet” type=”text/css” /> <link href=”//www1.moon-ray.com/formeditor/formeditor/css/form.publish.css” rel=”stylesheet” type=”text/css” /> <link href=”//forms.moon-ray.com/v2.4/include/minify/?g=moonrayCSS” rel=”stylesheet” type=”text/css” /> <link href=”//ajax.googleapis.com/ajax/libs/jqueryui/1.8.10/themes/smoothness/jquery-ui.css” rel=”stylesheet” type=”text/css” /> <link href=”//www1.moon-ray.com/v2.4/include/formEditor/gencss.php?uid=p2c10469f14″ rel=”stylesheet” type=”text/css” />

    <script type=”text/javascript” src=”//www1.moon-ray.com/v2.4/include/formEditor/genjs-v2.php?html=false&uid=p2c10469f14″></script> 

    <div class=”moonray-form-p2c10469f14″>

    <div class=”moonray-form moonray-form-label-pos-stacked”><form class=”moonray-form-clearfix” accept-charset=”UTF-8″ action=”https://forms.moon-ray.com/v2.4/form_processor.php?&#8221; method=”post”>

    <div class=”moonray-form-element-wrapper moonray-form-element-wrapper-contracted moonray-form-element-wrapper-alignment-left moonray-form-input-type-text”><label class=”moonray-form-label” for=”mr-field-element-93054418079″>First Name</label><input class=”moonray-form-input” id=”mr-field-element-93054418079″ type=”text” name=”firstname” placeholder=”” required=”” value=”” /></div>

    <div class=”moonray-form-element-wrapper moonray-form-element-wrapper-contracted moonray-form-element-wrapper-alignment-left moonray-form-input-type-email”><label class=”moonray-form-label” for=”mr-field-element-512036076431″>Email</label><input class=”moonray-form-input” id=”mr-field-element-512036076431″ type=”email” name=”email” placeholder=”” required=”” value=”” /></div>

    <div class=”moonray-form-element-wrapper moonray-form-element-wrapper-alignment-center moonray-form-input-type-submit”><input class=”moonray-form-input” id=”mr-field-element-222251169937″ type=”submit” name=”submit-button” value=”Click Here To Get Your Free Program and Start Living Better Today” data-lastdisplayval=”Click Here To Get Your Free Progam and To Live Better Today” /></div>

    <div class=”moonray-form-element-wrapper moonray-form-input-type-hidden”><input type=”hidden” name=”afft_” value=”” /></div>

    <div class=”moonray-form-element-wrapper moonray-form-input-type-hidden”><input type=”hidden” name=”aff_” value=”” /></div>

    <div class=”moonray-form-element-wrapper moonray-form-input-type-hidden”><input type=”hidden” name=”sess_” value=”” /></div>

    <div class=”moonray-form-element-wrapper moonray-form-input-type-hidden”><input type=”hidden” name=”ref_” value=”” /></div>

    <div class=”moonray-form-element-wrapper moonray-form-input-type-hidden”><input type=”hidden” name=”own_” value=”” /></div>

    <div class=”moonray-form-element-wrapper moonray-form-input-type-hidden”><input type=”hidden” name=”oprid” value=”” /></div>

    <div class=”moonray-form-element-wrapper moonray-form-input-type-hidden”><input type=”hidden” name=”contact_id” value=”” /></div>

    <div class=”moonray-form-element-wrapper moonray-form-input-type-hidden”><input type=”hidden” name=”uid” value=”p2c10469f14″ /></div>

    </form></div>

    </div>

    #26735

    Topic: Orientation for

    in forum Enfold
    jmorillo
    Participant

    Hello:

    I’d like to ask for orientation to heading change: In the picture is the heading that I want to change

    http://img825.imageshack.us/img825/757/eud2.png

    I’ll use ubermenu and a plugin for the cart.

    Can I simple change header.php to do the job, are there hooks to do that (do you have a hook reference for the theme?)

    Your top level orientation for a good approach will be greatly appreciated.

    Thanks and best regards

    Jorge

    #26697
    ravecomputer
    Participant

    Hi,

    I wanted to use the layerslider shortcode in my archive templates and I found the following solutions which advised the poster to pull the layerslider folder out and use it as a plugin, and comment out the include in the functions file.

    https://kriesi.at/support/topic/how-to-insert-slide-show-with-layerslider#post-118722

    https://kriesi.at/support/topic/how-i-can-integrate-a-layerslider-in-the-custom-template-archive-php-code

    However, when I did this the Layout Builder stopped working. When I create a new page, the editor doesn’t load all the way, and clicking on the advanced layout builder button does nothing. On pages that already use the Layout builder the loading icon in the editor continuously spins.

    Is there something I’m missing, or a different way to enable the use of the layerslider in archive templates?

    #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

Viewing 30 results - 16,681 through 16,710 (of 16,888 total)