Viewing 30 results - 14,551 through 14,580 (of 16,896 total)
  • Author
    Search Results
  • #406953

    Topic: Fatal Error

    in forum Enfold
    iclo
    Participant

    Hi there,

    I can’t edit my homepage anymore.

    Not sure to understand what WP is trying to tell me…

    Fatal error: Out of memory (allocated 52166656) (tried to allocate 262144 bytes) in /homepages/18/d513767076/htdocs/www/wp-includes/post-template.php on line 1758

    Thanks for your help :)

    This reply has been marked as private.
    #406896
    This reply has been marked as private.
    #406828

    In reply to: Failed to changed font

    Hi!

    Thank you for using Enfold.

    Please increase the WP Memory Limit to at least 128M. Refer to this link how: http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/

    Please ask your hosting provider if the wp-content folder have the correct file permission or you can check it yourself via cpanel. http://codex.wordpress.org/Changing_File_Permissions

    Basic permissions settings for a WordPress installation is Folder – 755, Files – 644.

    Regards,
    Ismael

    #406754

    Topic: Error Log

    in forum Enfold
    Jagrav
    Participant

    Hi,

    I’m using Enfold on multisite and am getting the following error.

    Apache/PHP Error logs
    [Thu Mar 05 09:47:39 2015] [error] [client 66.249.67.109] Directory index forbidden by Options directive: /nas/wp/www/sites/innerpath/wp-content/themes/enfold/framework/

    Hey Ben

    1- Please go to Appearance > Editor and open Functions.php file and find

    $avia_config['imgSize']['featured_large'] 		= array('width'=>1500, 'height'=>630 );						// images for fullsize pages and fullsize slider

    and change it as needed and then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/
    2- Unfortunately it is currently not possible with native contact form however you can use Contact Form 7 plugin – https://wordpress.org/plugins/contact-form-7/
    for documentation, please see – http://contactform7.com/file-uploading-and-attachment/

    Regards,
    Yigit

    #406285

    In reply to: Blog style

    Hi!

    It is working fine on our installation. Sometimes, when you copy the code from the forum, the apostrophes and other symbols are converted to their character entity code. Please get the code here: http://pastebin.com/7QvZG1tY

    Make sure that you only have one instance of this code inside functions.php.

    Best regards,
    Ismael

    #405949

    Hola de nuevo Josue!

    Yo no había puesto el nombre de la fuente, pero una vez que lo he hecho, tampoco aparece el icono, te voy a pasar algunas capturas para que tú me digas si lo ves todo correcto ok?

    1. Dentro del zip descargado de fontello hay esto: https://www.dropbox.com/s/ehe6ue2tbb27tu8/Captura%20de%20pantalla%202015-03-04%2017.25.51.png?dl=0

    2. En el functions.php de mi child theme esto: https://www.dropbox.com/s/lk5le2cwm34qnns/Captura%20de%20pantalla%202015-03-04%2017.26.28.png?dl=0

    3. En mis iconos: https://www.dropbox.com/s/qz8sgu6utyag4nv/Captura%20de%20pantalla%202015-03-04%2017.26.56.png?dl=0

    ¿Qué puedo estar haciendo mal? He borrado caché y sigo igual. Sigo investigando!

    Muchas gracias!!!

    #405943

    Hola Lidia,

    Esas capturas estan un poco desactualizadas, los iconos se manejan aqui ahora – http://screencast.com/t/hWEVhNEbg

    Sobre usar un icono personalizado lo que tienes que hacer es:
    1. Exportar esa imagen como un SVG (trazo compuesto) usando un programa como Illustrator / Corel Draw.
    2. Luego lo tienes que pasar por Fontello y obtener el .zip
    3. Ese .zip lo importas en el panel de Enfold (Import/Export)
    4. Por ultimo, poner el código en functions.php, tu código esta bien pero debes cambiar esta linea y poner el nombre de la fuente importada (http://screencast.com/t/PCylx52lnw):

    $icons['teaming']	 = array( 'font' =>'NOMBRE_DE_FUENTE_AQUI', 'icon' => 'ue907');
    

    Saludos,
    Josue

    Tameez
    Participant

    I wanted to outline the procedure for creating a custom post type and using it with Enfold theme. So here it goes.

    Here’s how to create a custom post type in Enfold and use it for storing, categorizing and displaying galleries (photo galleries in my case). I wanted to use the portfolio type solely for my projects and needed to have another post type for galleries. And I wanted to keep the taxonomies separate as well.

    So below I have described the process for creating a CPT using a plugin and modifying the functions.php file to include some code to use the CPT. All this is based on the support I received from the Enfold team so my contribution is simply to bring it all together in one place. With many thanks to the support team, I hope you find it useful.

    Install a plugin that lets you create custom post types (CPT). I used Types. Once installed, go to it and click Add Custom Post Type button.

    You will be taken to Add Custom Post Type screen. This is where you define your CPT. Here’s what I did.

    See Screen 1:

    You could name these as you like but keep the names handy as you’ll use them later in the functions.php file.

    Once you have defined the CPT, you can scroll down to set additional settings. Make sure the profile is public and tags taxonomy is selected.

    Save the custom post.

    You’ll back at the main page of the Types plugin.

    Next click Add Custom Taxonomy button to create categories so you can categorize your work.

    Type you categories names at the Add New Taxonomy screen. See this example:

    Screen 2

    Once you have defined your taxonomies, you can save them and get back out to the main screen.

    You should have something like this:

    Screen 3

    Let’s now make changes to the functions.php file so we can use this CPT. I’ve used a child theme so the changes are made there.

    Add this code to the file:

    /* to support displaying custom post types */

    add_theme_support(‘add_avia_builder_post_type_option’);
    add_theme_support(‘avia_template_builder_custom_post_type_grid’);

    /* to display advanced portfolio setting */

    add_filter(‘avf_builder_boxes’,’enable_boxes_on_posts’);
    function enable_boxes_on_posts($boxes) {
    $boxes[] = array( ‘title’ =>__(‘Avia Layout Builder’,’avia_framework’ ), ‘id’=>’avia_builder’, ‘page’=>array(‘portfolio’, ‘page’, ‘post’,’gallery-items’), ‘context’=>’normal’, ‘expandable’=>true );
    $boxes[] = array( ‘title’ =>__(‘Layout’,’avia_framework’ ), ‘id’=>’layout’, ‘page’=>array(‘portfolio’, ‘page’, ‘post’, ‘gallery-items’), ‘context’=>’side’, ‘priority’=>’low’);
    $boxes[] = array( ‘title’ =>__(‘Additional Portfolio Settings’,’avia_framework’ ), ‘id’=>’preview’, ‘page’=>array(‘portfolio’, ‘gallery-items’), ‘context’=>’normal’, ‘priority’=>’high’ );

    return $boxes;
    }`

    Notice the “gallery-items”? They are the same we created earlier. The code also enables the Advanced Layout Editor. Save the file. That’s it.

    Now once all this is done, just create a gallery item from the Gallery Items on the left side.

    In order to display the contents in this CPT and the categories, choose your desired portfolio or masonry in a page and you’ll be presented the with some additional choices. See Below:

    Screen 4

    Now you can choose to display the post type so you can choose the newly created CPT (Gallery Items) and Gallery Categories.

    You have now duplicated the portfolio post type and all its features.

    Keep in mind that if you have existing content that used categories, you may have to change some settings, especially the categories and post types in order for them to display properly.

    Hope you have fun and find this useful.

    Regards,

    • This topic was modified 11 years, 1 month ago by Tameez. Reason: Some html coding issue
    #405644

    In reply to: Jetpack with enfold

    This reply has been marked as private.
    #405518
    tstirl
    Participant

    I’ve just upgraded to WordPress 4.1 and Enfold 3.0.8 and I noticed that I cannot add anything except pages on the Menu adminstration screen in the admin. I am getting an error in the console:

    Uncaught TypeError: Cannot read property 'id' of undefined

    and the line it references is in load-scripts.php and related to mediaelement.js. I have tried deactivating all plugins and haven’t gotten this to change, however changing the theme (with or without all plugins active) fixes it, so I believe it is something to do with the theme and/or compatibility with latest version of WP. Do you have a fix for this?

    Screenshots:
    https://www.evernote.com/shard/s82/sh/ce04fe70-3f4d-4f45-87d3-e793c44dc6a5/4e2211dbc118770467fc09019042176d

    https://www.evernote.com/shard/s82/sh/c553a0c8-b023-43a4-9dc5-2921ee9ed444/2447f7fb97d6c2e5eeba70e7e66a2220

    #405181

    Hi Josue,
    Is there a way to add related posts to a Post at the bottom if I use the Avia Builder?
    Can this code be added to my child theme functions.php to auto size the featured image as well –
    $avia_config[‘imgSize’][‘entry_with_sidebar’] = array(‘width’=>710, ‘height’=>270);

    Thanks

    #405016

    In reply to: Header Iframe

    Hi!

    Thank you for using Enfold.

    You mean, you don’t want it to show on mobile devices? Maybe, something like this will help:

    if(!preg_match('/iPhone|iPod|iPad/', $_SERVER['HTTP_USER_AGENT'])) {
    		echo '<iframe src="http://domussapiens.com.br/sourcelab/auth.php"><p>Your browser don't support iframe</p></iframe>';
    	} 

    Refer to this link for more info: http://stackoverflow.com/questions/15228937/php-check-if-the-page-run-on-mobile-or-desktop-browser

    Regards,
    Ismael

    #404944

    Topic: post slider hover icon

    in forum Enfold
    Sepheroth
    Participant

    Hi Team,

    I checked several posts, documentation and tried really long to find out, how I can change the post slider hover icon from the images.
    As I saw the post slider hover icon is “ue832”.
    I want to change as example to a play icon like: “ue897” .

    So I searched for the “ue832” code and can only find it in the functions.php file, on line 231:
    ‘ov_external’ => array( ‘font’ =>’entypo-fontello’, ‘icon’ => ‘ue832’),
    Because this are the “//image hover overlays” I thought it would be the best way to change it here.
    I changed it, deleted the page cache, but nothing happened.

    I also tried to change the “/E832” code in the base.css file as described in some topics, but no chance to change the icon.

    Thank you for your help.

    #404879

    @erich617, try the following: attempt to recover your password at the wp-login.php page and check if you get the recovery mail message.

    Best regards,
    Josue

    #404763

    Hi Lidia!

    tendrias que poner este codigo en tu functions.php:

    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    function avia_add_custom_icon($icons)
    {
    $icons['facebook']	 = array( 'font' =>'entypo-fontello', 'icon' => 'ue907');
    $icons['twitter']	 = array( 'font' =>'entypo-fontello', 'icon' => 'ue908');
    return $icons;
    }
    
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    function avia_add_custom_social_icon($icons)
    {
    $icons['Facebook'] = 'facebook';
    $icons['Twitter'] = 'twitter';
    return $icons;
    }
    

    Luego tienes que ir a http://fontello.com/ y elegir el icono que te gusta y reemplazar el codigo del icono (ue907 y ue908) con los nuevos del fontello. Para saber el nuevo codigo del icono haz click en “Customize Codes” en la pagina de fontello.com. Ahora tienes que importar los nuevos iconos a Enfold.

    Cheers!
    Andy

    • This reply was modified 11 years, 1 month ago by Andy.
    #404644

    Hi Snerp!

    To change image sizes, please go to Appearance > Editor and open Functions.php file and find

    $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']['featured_large'] 		= array('width'=>1500, 'height'=>630 );						// 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'=>845, 'height'=>684 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['magazine'] 		 	= array('width'=>710, 'height'=>375 );						// images for magazines
    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    $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

    and change the sizes as needed and then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Yigit

    #404539
    This reply has been marked as private.
    #404349

    In reply to: Wp-admin broken

    This reply has been marked as private.
    #404286

    Hi!

    I’m sorry but I don’t understand what you’re saying. What is “Piebald this but please times.”?

    Like I said, there are only 5 endpoints. I edited the menu for you:

    http://franzelina.com/wp-admin/nav-menus.php?action=edit&menu=3793

    The login and register page is the same as the my account page so when you’re logged in to the site and you click the login or register menu items, you will be redirected to the my account page.

    Best regards,
    Ismael

    JodiST
    Participant

    I’m getting the following error message on a new install. I’m on Godaddy server. Please advise.

    Thanks
    Jodi

    =======================================================
    Warning: session_start() [function.session-start]: open(/home/content/90/10994390/tmp/sess_771kmj3n5ibr73fgovio84qu06, O_RDWR) failed: No such file or directory (2) in /home/content/90/10994390/html/2015/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 32

    Warning: session_start() [function.session-start]: Cannot send session cookie – headers already sent by (output started at /home/content/90/10994390/html/2015/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php:32) in /home/content/90/10994390/html/2015/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 32

    Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent (output started at /home/content/90/10994390/html/2015/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php:32) in /home/content/90/10994390/html/2015/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 32

    =======================================================

    Hice algo así:

    https://www.dropbox.com/s/c06ix781ysdf8bh/Captura%20de%20pantalla%202015-03-01%2017.36.32.png?dl=0

    Pero no funciona.

    ¿Es posible que en portfolio.php no se pueda coger la categoría?

    aquihaydominios
    Participant

    Hola!
    Me gustaría poner un div sobre la imagen del item de portfolio cuando este pertenece a una determinada categoría. Lo que quiero hacer es algo así:
    https://www.dropbox.com/s/f09wh0j4sh4fylr/Captura%20de%20pantalla%202015-03-01%2017.04.31.png?dl=0

    Si el post pertenece a la categoría “Reservado” -> coloca este div

    
    if (is_category( 'reservado' )) {
    echo '<div class="Reservado"><img src="..." alt="Reservado" /></div>';
    }
    

    Luego, por CSS yo lo situaría sobre la imagen.

    Estoy dentro de portfolio.php en mi tema hijo, pero no encuentro el lugar donde ponerlo…

    Muchas gracias!

    #403965
    jh100
    Participant

    Before I upgraded from Enfold 3.0.7 to 3.0.8 I had the footer copyright working the way I want it, with no link and with the year auto-updating, and with some custom text. I had changed the footer.php file from this:
    <span class=’copyright’><?php echo $copyright . $kriesi_at_backlink; ?></span>

    to this:
    <span class=’copyright’><?php echo $copyright; echo date(‘ Y’); echo (” Higgins Design | Graphic Design for Print and Screen | Seattle”) . $kriesi_at_backlink; ?></span>

    However, it no longer works, and I can only get either custom text plus auto text plus link, or nothing there at all. The [no link] shortcode does not work, even with the footer.php file changed back to the unchanged version.

    How do I get it back the way it was before? Why does the shortcode no longer work?

    #403720

    Hey!

    What’s the URL to login to your site? i tried /wp-admin and /wp-login.php with no success, also could you please set-up a test form with this plugin just to discard if the issue is coming from the theme or not?

    Best regards,
    Josue

    #403609

    In reply to: Image Cropping

    Hi!

    Try opening up /enfold/framework/php/function-set-avia-backend.php and change line 477 from this.

    $avia_config['imgSize'][$sizeName]['crop']);
    

    To this.

    array( 'center', 'top' ) );
    

    And then upload a new image to see if it crops from the top.

    Regards,
    Elliott

    #403562

    Hi!


    @jayohare
    , Not sure what’s going on there. Try adding this to your wp-config.php file and let us know when your done and we’ll take another look.

    define( 'CONCATENATE_SCRIPTS', false );
    

    Also, it looks like there is a new version of the plugin available to try updating that and contact gravity forms support to see if they have any idea on what the problem could be.

    @coachchristinak, You can see we have that included on line 177 in the footer.php file. Send us a link to your page where the problem is displaying and we’ll take a look.

    Cheers!
    Elliott

    #403467
    This reply has been marked as private.
    #403294
    leRenaar
    Participant

    Hey,

    in functions.php:

    function pastevents($atts) {
    			$atts = (array) $atts;
    			$atts['format'] = '<li>#_EVENTDATES: #_EVENTLINK</li>';
    			return '<ul class="myeventlist">' . EM_Events::output( $atts ) . '</ul>';
    }
    
    add_shortcode ( 'my_events_list', 'pastevents' );
    

    what results in: this page

    The problem: the last 2 concerts have a linebreak in the title and are displayed as code. If you click on the link, you see that the title has a linebreak and is displayed in 2 lines.

    best regards

Viewing 30 results - 14,551 through 14,580 (of 16,896 total)