Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter Mickey

    (@sachin0414)

    I have already checked these but no help, Also reinstalled & rollback the WordPress core files, still did not help

    Thread Starter Mickey

    (@sachin0414)

    Thank You

    • This reply was modified 3 years, 5 months ago by Mickey.
    Thread Starter Mickey

    (@sachin0414)

    Also found more two issue.

    Third Issue: Links doesn’t work in amp version

    Fourth Issue: In both AMP & Non-version : “You may also like” content displays irregular thumbnails size if posts under that have different featured image size.

    Thread Starter Mickey

    (@sachin0414)

    I’m just using RankMath for SEO,
    Your support pannel has provided me the following code for automaically upadating title as a focused keyword.
    but I want it to be updated on the meta description and alt text of the featured image as well.

    
    

    function update_focus_keywords() {
    $posts = get_posts(array(
    ‘posts_per_page’ => -1,
    ‘post_type’ => ‘post’ // Replace post with the name of your post type
    ));
    foreach($posts as $p){
    // Checks if Rank Math keyword already exists and only updates if it doesn’t have it
    $rank_math_keyword = get_post_meta( $p->ID, ‘rank_math_focus_keyword’, true );
    if ( ! $rank_math_keyword ){
    update_post_meta($p->ID,’rank_math_focus_keyword’,strtolower(get_the_title($p->ID)));
    }
    }
    }
    add_action( ‘init’, ‘update_focus_keywords’ );
    `

    Thread Starter Mickey

    (@sachin0414)

    So I’m marking this as closed and self-resolved, below is the css I used to add track button on orders detail page.

    
    
    /*
    In case any one need this 
    */
    
    .open_tracking_lightbox:after
    {   
     
        content:"Track my Order";
     color: #00FFDA!important;
        background-color: transparent !important;
        border: 0px;
        display: block;
        margin: 3px;
        width: fit-content;
        padding: 2px 22px;
        box-shadow: 2px 2px 2px rgb(0 0 0 / 25%), -2px -2px 3px rgb(255 255 255), inset 2px 2px 5px rgb(0 0 0 / 3%), -3px -3px 10px rgb(0 0 0 / 10%);
        border-radius: 20px;
        text-align: center;   
    }
    
    • This reply was modified 3 years, 10 months ago by Yui.
    • This reply was modified 3 years, 10 months ago by Yui. Reason: please use CODE button for proper formatting
    Thread Starter Mickey

    (@sachin0414)

    Update > Not a good plugin for users of ACF pro

    I can’t display fields from Nested Repeater Fields , Currently while trying to output from the Image Gallery Field inside the Nested Repeater Field it shows nothing.
    and in case of Text Field inside the Nested Repeater Fields it only output the word “Array” .

    Hope in future this plugin supports all type of dynamic contents.

Viewing 6 replies - 1 through 6 (of 6 total)