Forum Replies Created
-
in reply to: Activation
You have a very old PHP version:
PHP Version 5.4.45
Do you have any error log file?
A CPanel or something similar?
Thanks
in reply to: ActivationOr try directly to replace this function on wp-content/plugins/codeless-builder/codeless-builder.php
pluginsLoaded on line 152 with:
public function pluginsLoaded() { if( ! function_exists( 'codeless_setup' ) ) return; // Setup locale load_plugin_textdomain( 'cl_builder', false, $this->path( 'APP_DIR', 'locale' ) ); /** * Init Post Meta functionality */ if( cl_is_customize_posts_active() ) $this->post_meta()->init(); }in reply to: ActivationWordPress admin and Password to log in into your site and look what causes the problem.
in reply to: ActivationHello,
Can you please help me with the credentials of your wordpress website.
Send them as private.Let me know
Thanksin reply to: Folie theme installed – getting fatal errorOr try this final function:
function codeless_portfolio_item_permalink(){ $custom_link = codeless_get_meta( 'portfolio_custom_link', false, get_the_ID() ); if( $custom_link !== false ) return $custom_link; else return get_permalink(); }in reply to: Folie theme installed – getting fatal errorI think that is a problem caused by a different PHP version that you are using.
Please try this fast fix.
Go to folie/includes/codeless_functions_portfolio.php and replace line 81-86 with:
function codeless_portfolio_item_permalink(){ $custom_link = codeless_get_meta( 'portfolio_custom_link', '', get_the_ID() ); if( ! empty( $custom_link ) ) return codeless_get_meta( 'portfolio_custom_link', '', get_the_ID() ); else return get_permalink(); }Let us know
Regardsin reply to: Folie theme installed – getting fatal errorHello,
Yes sure, we can help you identify this issue.
Please send us a System Status From the panel, or give us your WordPress credentials to understand well the problem. Send them as private.
Thanks