Home Forums Aasta Pro Lead Contact In Service Page

Tagged: 

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #38875
    Sohail Bakhrich
    Participant

    Hello,
    How can we let people contact us directly in the site in the page of the service?
    Because we want to not sell services with direct checkout and payment, we prefer to display service and people can contact us with details, and after agreement we send them the invoice to pay and start the work.

    #38888
    themearile
    Keymaster

    Hi Sohail

    You can add the contact page link in the service read more button so when customer click the service button then it will redirect in the contact page.

    Thanks

    #38906
    Sohail Bakhrich
    Participant

    Hello thanks for your reply.
    We think about a better method.
    In woocommerce we create products as virtual (not downloadable) and set COD (Cash On Delivery) as payment method disabling the shipping in the settings.
    In this way customers will order services by checking out but without paying, we will send them invoice to pay after agreement on the work to do.
    Meanwhile, in the services in home page we will setup the name as category of services and the read more button will redirect to products category in which clients will find the services in that category.
    We share this info hoping it will help someone else.

    Haliso SMM Ltd.

    #38925
    Sohail Bakhrich
    Participant

    Now the issue is another one.
    We are struggling to change the shown title of shop page.
    We changed to “Services” but it’s still shown as “Shop”.
    Can you provide us a code to force it to be shown as “Services” like how you did it with Yoast SEO breacrumbs?

    You can refer to our page here to see the issue: https://halisosmm.com/services/

    #38930
    themearile
    Keymaster

    Hi Sohail Bakhrich

    Please add the below code in the functions.php file in the theme.

    add_filter( ‘woocommerce_page_title’, ‘new_woocommerce_page_title’);
    function new_woocommerce_page_title( $page_title ) {
    if( $page_title == ‘Shop’ ) {
    return “New Shop Title”;
    }
    }
    Let us know if it works.

    Thanks

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