Forum Replies Created

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
  • in reply to: Border Needed #88248
     maxhilton
    Participant

    Hi Radu,

    Thanks a lots ! 🙂

    in reply to: Border Needed #88059
     maxhilton
    Participant

    Hi Radu,

    Thanks for the help, and the space between the border and the table as per attachment ?

    in reply to: Border Needed #87823
     maxhilton
    Participant

    Hi,

    Can I know how to change the design as per attachment ? Thanks

    in reply to: Tab is not working in mobile #78677
     maxhilton
    Participant

    HI,

    I did not receive any reply yet. Do I need to submit the ticket again ? Thannks

    in reply to: Tab is not working in mobile #78497
     maxhilton
    Participant

    This is the URL – https://tukang.com.my/contractor-listing/, thanks

    in reply to: Border Needed #73336
     maxhilton
    Participant

    Hi,

    It works. Thanks a lot.

    in reply to: Border Needed #72944
     maxhilton
    Participant

    Hi,

    Can I know how to remove the space between the image gallery and the text block ? Tried with padding=”0px” but it doesn’t seems to be work, any suggestion on it ? Thanks (.image is the class name for the image gallery)

    https://tukang.com.my/testpage/

    in reply to: Border Needed #72650
     maxhilton
    Participant

    Hi Radu,

    Thanks for the help, it works well for the second one, for the first one, however, is not working, cause the border cover on the image gallery, (Sorry, forget to tell you that it was an image gallery above and textblock below, and the border right and left should be cover both image gallery and text block), Or Maybe the left and right border that can connect to the image gallery, possible for that ?
    Thanks

    in reply to: Border Needed #72510
     maxhilton
    Participant

    HI,

    Below are the pages :

    https://tukang.com.my/low-budget-renovation/
    https://tukang.com.my/aa2hm/ (need border as well)

    Thanks !

    in reply to: menu overlap #67876
     maxhilton
    Participant

    HI,

    This a the link. https://tukang.com.my/

    in reply to: Membership Levels add extra fields #65941
     maxhilton
    Participant

    Hi,

    Can I know where can I paste this code ? I’m not good in coding part so please kindly guide me on this. Thanks.

    ——————————————————————————————————-
    <?php
    /**
    * @package Membership_Features
    * @version 0.1
    */
    /*
    Plugin Name: Membership Features
    Description: Implements a custom post type, “Feature”, which replaces the default features used in the membership pricing table of the Kleo Theme. To use, first create new features as required, then enable or disable them in the Theme Options -> Memberships.
    Author: Potion
    Version: 0.1
    */

    /**
    * Register custom post type: membership_feature
    */
    add_action( ‘init’, ‘create_feature_post_type’ );
    function create_feature_post_type() {
    register_post_type( ‘membership_feature’,
    array(
    ‘labels’ => array(
    ‘name’ => _x( ‘Features’ ),
    ‘singular_name’ => _x( ‘Feature’ ),
    ‘add_new’ => _x( ‘Add New’ ),
    ‘add_new_item’ => __( ‘Add New Feature’ ),
    ‘edit_item’ => __( ‘Edit Feature’ ),
    ‘new_item’ => __( ‘New Feature’ ),
    ‘all_items’ => __( ‘All Features’ ),
    ‘view_item’ => __( ‘View Feature’ ),
    ‘search_items’ => __( ‘Search Features’ ),
    ‘not_found’ => __( ‘No features found’ ),
    ‘not_found_in_trash’ => __( ‘No features found in Trash’ ),
    ‘parent_item_colon’ => ”,
    ‘menu_name’ => __( ‘Features’ ),
    ),
    ‘public’ => true,
    ‘publicly_queryable’ => true,
    ‘show_ui’ => true,
    ‘show_in_menu’ => true,
    ‘query_var’ => true,
    ‘rewrite’ => array( ‘slug’ => ‘feature’ ),
    ‘capability_type’ => ‘post’,
    ‘has_archive’ => true,
    ‘hierarchical’ => false,
    ‘menu_position’ => 120,
    ‘supports’ => array( ‘title’)
    )
    );
    }

    /**
    * Use membership_feature posts to populate features for Kleo Theme Membership Level Pricing Table
    */
    add_filter(‘kleo_pmpro_level_restrictions’, ‘kleo_my_levels_checkmarks’);
    function kleo_my_levels_checkmarks($settings) {

    $args = array(
    ‘post_type’ => ‘membership_feature’,
    ‘posts_per_page’ => -1);

    query_posts( $args );

    if (have_posts) {

    $settings = array ();

    while (have_posts()) : the_post();

    array_push( $settings, array(
    ‘title’ => __(‘Restrict ‘ . get_the_title(), ‘kleo_framework’),
    ‘front’ => __( get_the_title(), ‘kleo_framework’),
    ‘name’ => basename(get_permalink($post->ID))
    )
    );

    endwhile;
    }

    wp_reset_query();

    return $settings;
    }
    ——————————————————————————————————–

    in reply to: table spacing #65934
     maxhilton
    Participant

    Hi, this is the links – https://tukang.com.my/interior/kitchen-cabinet-2/, thanks.

Viewing 12 posts - 1 through 12 (of 12 total)

Log in with your credentials

Forgot your details?