• Resolved freshy969

    (@freshy969)


    hello

    i want to ask can I set title of the post automatic to be the water maker for it to appear at the center of the images

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

    (@badasswp)

    Oh yes! If I get you correctly, you are asking if you can you set the title of the post to appear as the water marker? If that is what you’re asking, yes it is very possible! You can do this using a custom hook like so:

    add_filter( 'watermark_my_images_text', 'watermark_text_options', 10, 1 );

    function watermark_text_options( $text_options ): array {
    return wp_parse_args(
    [
    'label' => get_the_title()
    ],
    $text_options
    );
    }

    Let me know if this works for you and pls don’t hesitate to drop a review if you find this useful. Thanks.

    • This reply was modified 1 month, 3 weeks ago by badasswp.
    • This reply was modified 1 month, 3 weeks ago by badasswp.
    • This reply was modified 1 month, 3 weeks ago by badasswp.
    Thread Starter freshy969

    (@freshy969)

    but don’t you think it will be better if you include it as a feature in the plugin. Kinda beake it inside the plugin instead of applying code like you said.. this is because of non techy people.. I will be hoping to see it on your next update

    • This reply was modified 1 month, 2 weeks ago by freshy969.
    Plugin Author badasswp

    (@badasswp)

    Yes, you’re absolutely correct! We’ll add this feature in the next release, so that its part of the plugin options that you can turn on/off.

    Thanks for the feedback by the way. Very much appreciated.

    Thread Starter freshy969

    (@freshy969)

    Ok.. you are welcome,I am here to help in anyways that I can to improve wonderful product like yours. Never forget that the feature can also work with only picture, once it is on the wordpress image gallery of that site.once activated the plugin and enable the feature it will automatically add title on the new and existing old images already on the site. However please keep me updated once you release the next feature

Viewing 4 replies - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.