Summer Sale Alert! Save 20% on WP Theme Bundle: 240+ WP Themes & 5 Plugins. Use Code "SIZZLE20"
Summer Splash Sale: Dive into 25% Off On All Our Premium WordPress Themes! Use Coupon Code "SPLASH25" at Checkout.

VW Hospital Theme

Home Forums VW Theme VW HOSPITAL PRO THEME VW Hospital Theme

Viewing 15 posts - 16 through 30 (of 89 total)
  • Author
    Posts
  • #2758
    martyn
    Participant

    Hi

    I already use Slider Revolution for my sliders as it gives me the ability to add other detail to my images, is there a recommended way of using this plugin with the VW Hospital Theme instead of the inbuilt one?

    • This reply was modified 6 years, 6 months ago by martyn.
    #2764
    VWTHEMES
    Keymaster

    Hi Martyn,

    Of course, you can add your own slider and can disable the theme default one.
    All you need to do is inside Customizer -> Slider Section check on disable slider.
    You can then insert the shortcode of the slider that you want to display inside the editor section of your homepage.

    It will then appear in place of the default theme slider.

    If you don’t find the above option in your current theme then make sure you update your theme first.
    You can update the theme from https://www.vwthemes.com/my-account/ order section.

    Let us know if we can be of any further assistance.

    Thanks

    #2765
    martyn
    Participant

    Hi Keymaster

    Thanks for the reply on adding my own slider utility, unfortunately I cannot find the option to disable the VW Slider in the Customizer, all I can do is pick the number of slides and change the image there does not seem to be a disable option.

    #2766
    VWTHEMES
    Keymaster

    Hi Martyn,

    We already told you before to update the theme if you don’t find the option.

    If you don’t find the above option in your current theme then make sure you update your theme first.
    You can update the theme from https://www.vwthemes.com/my-account/ order section.

    Let us know if we can be of any further assistance.

    Thanks

    #2806
    it
    Participant

    Hello,
    How can I add translation to second language in the theme. I have installed the qTranslate-X plugin but I don`t know how to translate theme specific configuration with it and how to add language select on every page. Can you help me? The theme is stated as translation ready.

    #2807
    VWTHEMES
    Keymaster

    Hi Mladen Georgiev,

    Yes, our theme is translation ready. You just need to generate a po/mo files which will be done through the pot file which is ready. Then that file will be added to the theme which is used to translate the content. But it will translate the static content which is added to the site. And the po/mo file will be generated according to the content of the site what you have added.

    The plugin you are using, states that it will translate the dynamic content as well. Have you go through the installation https://wordpress.org/plugins/qtranslate-x/#installation and startup guide of this plugin https://qtranslatexteam.wordpress.com/startup-guide/. if so then where you got stuck?

    Thanks

    #2947
    pastorrichard
    Participant

    Hello. I have been working with my theme all week and have most of my site where I am happy with it. However, I have one area that I can’t figure out where to access it to change the sizing. If you look at my page, certifiedchristianchaplains.org towards the bottom in the latest news and events section, the selected image that is displayed there is about twice the size of what I would like it to be. Is there a line somewhere in code that I can modify that image display size?

    #2953
    VWTHEMES
    Keymaster

    Hi pastorrichard,

    Latest news and event section is designed to have image full width. If you don’t want that image to be full width:

    Add the following CSS to your child theme style.css.

    section#post img {
    width: auto;
    }
    section#post .img {
    text-align: center;
    }

    Thanks

    #3018
    e.v.lubimova
    Participant

    Hello!
    There is a phrase “Searсh for” in English in the primary menu. How can I translate this phrase into Russian and search results too?
    There is the word “menu” in English in the mobile version too. I would like to translate into Russian these phrases.
    If it’s difficult to do can I delete the search form at all?
    Thank you!

    #3020
    VWTHEMES
    Keymaster

    Greetings,

    We have checked translation of search and menu both are working.we have attached the screenshot please.

    https://vwthemes.com/screen/menu.png
    https://vwthemes.com/screen/search.png

    Please try another translation plugin, and let us know if you need any kind of help.

    Thanks

    #3025
    martyn
    Participant

    Hi
    I needed to create a couple of additional sidebar layouts with their own menu structures.

    I created the sidebar.php files in the child directory and thought I could then register them through the child theme directory functions.php file but this did not work and the theme ignored my additional sidebars until I edited the main functions.php file and registered them there.

    This is how I edited the functions.php file:-
    Original entry
    _________________________________________________________________
    register_sidebar( array(
    ‘name’ => __( ‘Page Sidebar’, ‘vw-hospital’ ),
    ‘description’ => __( ‘Appears on page sidebar’, ‘vw-hospital’ ),
    ‘id’ => ‘sidebar-2’,
    ‘before_widget’ => ‘<aside id=”%1$s” class=”widget %2$s”>’,
    ‘after_widget’ => ‘</aside>’,
    ‘before_title’ => ‘<h3 class=”widget-title”>’,
    ‘after_title’ => ‘</h3>’,
    ) );

    I then added my additional sidebar array:- (which works ok)
    register_sidebar( array(
    ‘name’ => __( ‘Hearing Sidebar’, ‘vw-hospital_child’ ),
    ‘description’ => __( ‘Appears on hearing sidebar’, ‘vw-hospital_child’ ),
    ‘id’ => ‘sidebar-3’,
    ‘before_widget’ => ‘<aside id=”%1$s” class=”widget %2$s”>’,
    ‘after_widget’ => ‘</aside>’,
    ‘before_title’ => ‘<h3 class=”widget-title”>’,
    ‘after_title’ => ‘</h3>’,
    ) );

    This works, but only if I register the array in the functions.php file in the main theme directory and not the functions.php in the child directory. I know it’s not a good idea to change the main theme directory files so is there a better way of doing this?

    #3029
    VWTHEMES
    Keymaster

    Hi,

    I have gone through your code, the code is not proper that’s why it is not working as expected. Below is the correct code:

    add_action( ‘widgets_init’, ‘child_register_sidebar’ );

    function child_register_sidebar(){
    register_sidebar( array(
    ‘name’ => __( ‘Page Sidebar 2’, ‘vw-hospital’ ),
    ‘description’ => __( ‘Appears on page sidebar’, ‘vw-hospital’ ),
    ‘id’ => ‘sidebar-3’,
    ‘before_widget’ => ‘

    ‘,
    ‘before_title’ => ‘

    ‘,
    ‘after_title’ => ‘

    ‘,
    ) );
    }

    Try this code.

    You can include the side bar anywhere as you want. To include side bar add below code:

    Let me know if you have any other query.

    Thanks.

    #3035
    martyn
    Participant

    Hi Keymaster

    Thank you for your reply.

    I added your code to the child theme ‘functions.php’ file, unfortunately it didn’t work. When I tried to load and run the site, the code just appeared at the top of the screen – do you have any other suggestions?

    Regards

    Martyn

    #3051
    VWTHEMES
    Keymaster

    Hello Martyn,

    Please check your email for further instruction.

    Thanks

    #3266
    AL
    Participant

    Hi
    Im a new buyer. How do I make the V W Hospital v1.0.2 theme look like the DEMO?

Viewing 15 posts - 16 through 30 (of 89 total)
  • You must be logged in to reply to this topic.