• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

Listeo - Best Directory & Listings With Booking WordPress Theme

Listeo - Directory & Listings With Booking - WordPress Theme v1.9.50

No permission to download
Solution: displaying a background image in the header on the post page. In the theme file you need to add above <!-- Titlebar code:
PHP:
<?php  

$parallax             = get_post_meta($post->ID, 'listeo_parallax_image', TRUE);
$parallax_color     = get_post_meta($post->ID, 'listeo_parallax_color', TRUE);
$parallax_opacity     = get_post_meta($post->ID, 'listeo_parallax_opacity', TRUE);

$title                 = get_the_title($post->ID);
$subtitle             = get_post_meta($post->ID, 'listeo_subtitle', true);

$parallax_output      = '';
$parallax_output .= (!empty($parallax)) ? ' data-background="'.esc_url($parallax).'" ' : '' ;
$parallax_output .= (!empty($parallax_color)) ? ' data-color="'.esc_attr($parallax_color).'" ' : '' ;
$parallax_output .= (!empty($parallax_opacity)) ? ' data-color-opacity="'.esc_attr($parallax_opacity).'" ' : '' ;

?>

and wrap the #titlebar itself with a div .parallax

HTML:
<!-- Titlebar
================================================== -->

<div class="parallax titlebar" <?php echo wp_kses_post($parallax_output); //XSS ok, escaped above ?> >
<div id="titlebar" class="<?php echo esc_attr(get_option('listeo_blog_titlebar_style','gradient')); ?>">
    <div class="container">
        <div class="row">
            <div class="col-md-12">
               
                <h2><?php echo get_option('listeo_blog_title','Blog'); ?></h2>
                <span><?php echo get_option('listeo_blog_subtitle','Latest News'); ?></span>
   
                <!-- Breadcrumbs -->
                <?php if(function_exists('bcn_display')) { ?>
                    <nav id="breadcrumbs">
                        <ul>
                            <?php bcn_display_list(); ?>
                        </ul>
                    </nav>
                <?php } ?>

            </div>
        </div>
    </div>
</div>
</div>

And then in the custom fields of the posts we add a background image
Snag_207a20f.png
 
is the Coupon Code working on you guys? not auto deduct upon checkout page on pay order page, any fix in this? i found out if you disable Listeo Core, the woocommerce coupon will work.
 
Hello this v1.9.33 Untouched

Oops, seems that you have not activated your Listeo license yet!

How can we solve this?

It does not allow when you do theme settings.
 
Nulled version : after setup replace listeo core plugin
 

Attachments

  • listeo-directory-listings-wordpress-theme1933.zip
    27.1 MB · Views: 26
Null this way:

Modify wp-content/themes/listeo/inc/b472b0Base.php

Change line 492 adding "return true;" like this way:

PHP:
public static function CheckWPPlugin($purchase_key, $email,&$error = "", &$responseObj = null,$plugin_base_file="") {
            return true;
            $obj=self::getInstance($plugin_base_file);
            $obj->setEmailAddress($email);
            return $obj->_CheckWPPlugin($purchase_key, $error, $responseObj);
        }

Then it will work.
 
Last edited:
Null this way:

Mody file in envato_setup/inc/b472b0Base.php

Change line 492 adding "return true;" like this way:

PHP:
public static function CheckWPPlugin($purchase_key, $email,&$error = "", &$responseObj = null,$plugin_base_file="") {
            return true;
            $obj=self::getInstance($plugin_base_file);
            $obj->setEmailAddress($email);
            return $obj->_CheckWPPlugin($purchase_key, $error, $responseObj);
        }

Then it will work.
Hello, i don't found this file: b472b0Base.php, i have: envato_setup.php, and in this file is some diferent line code:



* Show the setup wizard
*/
public function setup_wizard()
{
if (empty($_GET['page']) || $this->page_slug !== $_GET['page']) {
return; <--- HERE ADDING TRUE?
}
if (ob_get_length()) ob_end_clean();

$this->step = isset($_GET['step']) ? sanitize_key($_GET['step']) : current(array_keys($this->steps));

wp_register_script('jquery-blockui', $this->plugin_url . 'js/jquery.blockUI.js', array('jquery'), '2.70', true);
wp_register_script('envato-setup', $this->plugin_url . 'js/envato-setup.js', array(
'jquery',
'jquery-blockui',
), $this->version);
wp_localize_script('envato-setup', 'envato_setup_params', array(
'tgm_plugin_nonce' => array(
'update' => wp_create_nonce('tgmpa-update'),
'install' => wp_create_nonce('tgmpa-install'),
),
'tgm_bulk_url' => admin_url($this->tgmpa_url),
'ajaxurl' => admin_url('admin-ajax.php'),
'wpnonce' => wp_create_nonce('envato_setup_nonce'),
'verify_text' => esc_html__('...verifying', 'listeo'),
));
 
Hello, i don't found this file: b472b0Base.php, i have: envato_setup.php, and in this file is some diferent line code:



* Show the setup wizard
*/
public function setup_wizard()
{
if (empty($_GET['page']) || $this->page_slug !== $_GET['page']) {
return; <--- HERE ADDING TRUE?
}
if (ob_get_length()) ob_end_clean();

$this->step = isset($_GET['step']) ? sanitize_key($_GET['step']) : current(array_keys($this->steps));

wp_register_script('jquery-blockui', $this->plugin_url . 'js/jquery.blockUI.js', array('jquery'), '2.70', true);
wp_register_script('envato-setup', $this->plugin_url . 'js/envato-setup.js', array(
'jquery',
'jquery-blockui',
), $this->version);
wp_localize_script('envato-setup', 'envato_setup_params', array(
'tgm_plugin_nonce' => array(
'update' => wp_create_nonce('tgmpa-update'),
'install' => wp_create_nonce('tgmpa-install'),
),
'tgm_bulk_url' => admin_url($this->tgmpa_url),
'ajaxurl' => admin_url('admin-ajax.php'),
'wpnonce' => wp_create_nonce('envato_setup_nonce'),
'verify_text' => esc_html__('...verifying', 'listeo'),
));

Go into themes/listeo/inc/, its located there
 
  • Like
Reactions: Panaiotis1
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock