• Resolved webam

    (@webam)


    hi I’m trying to customize the pages with elementor. I can not find the shortcode of the single ad to personalize it. If i do not personalize it is very badly

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    The Ad details pages do not use shortcodes, but you can register a shortcode which will disaply an Ad details page by adding the code below in your theme functions.php file

    
    add_shortcode( "advert_single", function( $args ) {
        ob_start();
        if( isset( $args["post_id"] ) ) {
            $post_id = $args["post_id"];
        } else {
            $post_id = get_the_ID();
        }
            
        $post_content = get_post( $post_id )->post_content;
        $post_content = wp_kses($post_content, wp_kses_allowed_html( 'post' ) );
        $post_content = apply_filters( "adverts_the_content", $post_content );
            
        include apply_filters( "adverts_template_load", ADVERTS_PATH . 'templates/single.php' );
        $content = ob_get_clean();
    
        return $content;
    });
    

    The to display the Advert details somewhere you can use the shortcode as [advert_single post_id="100"] where 100 is an actual ID of an Ad you would like to display.

    Thread Starter webam

    (@webam)

    Thankyou for answer. But i request that shortcode for edit page with elementor. It i have shortcode i can edit single ad page. If you know, if i edit/create page with elementor and enter the shortcode, after work with all single ad page. This is my scope. I can with your guide?

    Thread Starter webam

    (@webam)

    Hi, ok here i solve, thanks for your help. I’m very like your support

    Can you post the solution please @webam ?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How i find shortcode of single ad’ is closed to new replies.