TomFox

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 37 total)
  • Author
    Posts
  • in reply to: Porto Theme Sidebars in geodir wrapper #460295

    TomFox
    Expired Member
    Post count: 41
    This reply has been marked as private.
    in reply to: Porto Theme Sidebars in geodir wrapper #460279

    TomFox
    Expired Member
    Post count: 41
    This reply has been marked as private.
    in reply to: hide the categories and the search field #436716

    TomFox
    Expired Member
    Post count: 41

    Thanks Alex for your Support, for me this works better.

    #geodir_map_v3_home_map_1_posttype_menu
    {
    display: none !important;
    }

    Best Regards

    in reply to: hide the categories and the search field #436387

    TomFox
    Expired Member
    Post count: 41

    hi, that’s not a problem. I use the search widget.
    I’m trying it already with css but css and I’m not friends 😉

    in reply to: hide the categories and the search field #436361

    TomFox
    Expired Member
    Post count: 41

    Hello, Alex,

    if I disable SHOW / HIDE POST TYPE AND CATEGORY ON MAP then I’m going to see no Map.
    I want the map to continue to be displayed.

    in reply to: textarea with HTML editor #436360

    TomFox
    Expired Member
    Post count: 41

    great, thank you very much

    in reply to: textarea with HTML editor #436185

    TomFox
    Expired Member
    Post count: 41

    Thank you Guust

    There is no such thing, I always thought it would be a field for a free HTML input.
    You learn over and over again.

    Fx

    in reply to: hide the categories and the search field #436167

    TomFox
    Expired Member
    Post count: 41

    Thanks, that already helped me a lot.
    Unfortunately I have not found to disable the CUSTOM POST TYPES under the map.
    Do you have any advice?

    in reply to: Disable Preview #435998

    TomFox
    Expired Member
    Post count: 41

    thanks

    in reply to: File Upload Crop, Resize & Compress Images #421254

    TomFox
    Expired Member
    Post count: 41

    Okay, I’m looking forward to GDv2. The announcements look very interesting.

    With such an explanation you have a better understanding of the software.
    Thank you very much for the explanation.

    Best Regards

    Tom

    in reply to: File Upload Crop, Resize & Compress Images #421227

    TomFox
    Expired Member
    Post count: 41

    Hi,
    i can upload three images and would like to upload the Images Crop, Resize & Compress.
    Now I don’t know how to access and edit the pictures during (or after) the process of plupload.

    in reply to: Disable Set first image as post’s featured image. #421108

    TomFox
    Expired Member
    Post count: 41

    This Work’s

    
    
    add_action( 'save_post', 'set_featured_image' );
    function set_featured_image( $post_id )
    {
        global $wpdb, $plugin_prefix;
        $post_type = get_post_type($post_id);
        $table_name = $plugin_prefix . $post_type . '_detail';
        $obj_geodir_profilbild = $wpdb->get_results(  $wpdb->prepare(     "SELECT geodir_profilbild FROM " . $table_name . " WHERE post_id = %d   ", array($post_id) ));
    
          if (count($obj_geodir_profilbild)>0)
        {
              $geodir_profilbild  =$obj_geodir_profilbild[0]->geodir_profilbild;
        }
    // todo Check if featured image exists
       Generate_Featured_Image( $geodir_profilbild,   $post_id );
    }
    
    function Generate_Featured_Image( $image_url, $post_id  )
    {
    
        $upload_dir = wp_upload_dir();
        $image_data = file_get_contents($image_url);
        $filename = basename($image_url);
        if(wp_mkdir_p($upload_dir['path']))     $file = $upload_dir['path'] . '/' . $filename;
        else                                    $file = $upload_dir['basedir'] . '/' . $filename;
        file_put_contents($file, $image_data);
    
        $wp_filetype = wp_check_filetype($filename, null );
        $attachment = array(
            'post_mime_type' => $wp_filetype['type'],
            'post_title' => sanitize_file_name($filename),
            'post_content' => '',
            'post_status' => 'inherit'
        );
        $attach_id = wp_insert_attachment( $attachment, $file, $post_id );
        require_once(ABSPATH . 'wp-admin/includes/image.php');
        $attach_data = wp_generate_attachment_metadata( $attach_id, $file );
        $res1= wp_update_attachment_metadata( $attach_id, $attach_data );
        $res2= set_post_thumbnail( $post_id, $attach_id );
    }
    in reply to: Disable Set first image as post’s featured image. #421107

    TomFox
    Expired Member
    Post count: 41

    I’m sorry, but I can’t do that the way I was thinking about it.

    Actually, I would have to overload the geodir_set_wp_featured_image () function, but without a function_exists this is not possible.

    I’m still looking for a solution.

    in reply to: File Upload Crop, Resize & Compress Images #421093

    TomFox
    Expired Member
    Post count: 41

    Thanks Guust, but I need a proper filter or another approach. Stiofan can help you here?

    in reply to: Disable Set first image as post’s featured image. #421063

    TomFox
    Expired Member
    Post count: 41

    It’s done. I’m using it as a solution:
    add_filter(‘geodir_action_get_request_info’,’avr_geodir_edit_save_request’);

    Thx

Viewing 15 posts - 1 through 15 (of 37 total)