ProDesigns

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 971 total)
  • Author
    Posts
  • in reply to: Testimonials page won't display all the testimonials #10596
    ProDesigns
    Keymaster

    Hello Mel,

    Please use the below shortcode in the testimonial page by following the instructions mentioned below.
    – Login to your admin panel
    – Edit testimonial page and change shortcode from
    [ptta-testimonials] to
    [ptta-testimonials post_number=”50″]
    – Save the changes

    Thank you

    Regards,
    Team ProDesigns

    in reply to: botão CTA (CALL TO ACTION ) #10462
    ProDesigns
    Keymaster

    Hello Fernanda Gabriela da Cunha leal,

    CTA Widget is an inbuilt feature of the theme so it will be activated automatically when the theme is activated.
    If you would like us to look further in to your issue, please kindly create a temporary credentials to the admin area with administrative role and forward it to us at [email protected].

    Thank you

    Regards,
    Team ProDesigns Themes

    in reply to: CSS to change breadcrums bar #10461
    ProDesigns
    Keymaster

    Hello Wim,

    Sure, We would be glad to! Please find the CSS and the steps to add it to the theme.

    Please log in to the admin area and go to “Appearance >> Customize >> Additional CSS”.
    Paste the below code in “Additional CSS” and save it.

    #breadcrumb{
        padding-top: 20px;
        padding-bottom: 20px;
    }

    Thank you

    Regards,
    Team ProDesigns Themes

    in reply to: Box next to the logo #10280
    ProDesigns
    Keymaster

    Hello Karl-Heinz Garber,

    To add the box beside the logo, you would need update hook ‘business_point_header’ and add the new section.
    To do this, first create a child theme.
    In the functions.php file of the child theme, add the code to remove the business_point_header and then to add your custom header you would need to add the new action.

    add_action('init','business_point_header_action_cust');
    function business_point_header_action_cust(){
    remove_action('business_point_header','business_point_header_action');
    add_action('business_point_header','business_point_header_action_new_design');
    }
    function business_point_header_action_new_fun(){
    //-- Copy the content of 'business_point_header' from YOUR_SITE_ROOT/wp-content/themes/business-point/includes/hooks.php and paste it here
    //-- Make edits as per your need
    }`

    This will override the hook using the child theme.

    Thank you

    Regards,
    Team ProDesigns Themes

    in reply to: Predesigned pages #10279
    ProDesigns
    Keymaster

    Hello Kayodeobikoya,

    To have the theme look like it does on our site demo, you would need to install demo data.
    Please install “One Click Demo Import” plugin and click on “Import Demo Data” button.
    Please kindly let the process complete and your site will have the look just like the demo.

    Thank you

    Regards,
    Team ProDesigns Themes

    in reply to: Translate text #10277
    ProDesigns
    Keymaster

    Hello Deroderuiter,

    Unfortunately this is a bug and we will be resolving it soon in our next update.

    In the meantime if you need to implement this now, you can do this via a child theme.
    1. Create a child theme
    2. Copy the file “YOUR_SITE_ROOT/wp-content/themes/business-point/template-parts/content.php”
    3. Paste the file as “YOUR_SITE_ROOT/wp-content/themes/business-point-child/template-parts/content.php”
    4. Find “Continue Reading” and replace the word with below text code
    <?php echo esc_html__( 'Continue Reading ', 'business-point');?>

    You would not need the child theme once you would update to our next version if you haven’t made any other changes.

    Thank you
    Regards,
    Team ProDesigns Themes

    • This reply was modified 5 years, 3 months ago by ProDesigns.
    in reply to: Logo hiding menu on mobile #10269
    ProDesigns
    Keymaster

    Hello DC Breeze,

    Please follow the below steps to make the edits you need.
    – Login to the admin area
    – Go to “Appearance >> Customize >> Additional CSS”
    – Paste the below code in “Additional CSS” and save it
    @Media only screen and (max-width: 900px)
    {
    .site-branding
    {
    position: relative;
    z-index: 99;
    }
    }

    Thank you

    Regards,
    Team ProDesigns Themes

    in reply to: Can i replace icon to my image on BP: Services? #10123
    ProDesigns
    Keymaster

    Hello Nogo1024,

    BP Services widget uses Font Awesome icons, unfortunately images can’t be added instead. The effect you’re trying to implement would require customizing the plugin, PT Theme Addon, which is not suggested as during plugin updates the customization would be overwritten.

    We may add this to our plugin in one of our future updates. We are sorry for the inconvenience you may be facing.

    Thank you

    Regards,
    Team ProDesigns Themes

    ProDesigns
    Keymaster

    Hello Benson,

    Thank you for providing all the information.

    It is possible but there isn’t an easy way to accomplish this. To perform this operation a bit of technical knowledge is required.
    Providing the instructions of this is beyond the scope of basic support as our technical team would require to make additional efforts to get you the right setup which is future proof as well so that you would not face the same issues again. Thus, we would recommend going for our paid support if you are planning to keep the changes.

    Please feel free to let us know if you have any further queries.

    Thank you

    Regards,
    Team ProDesigns Themes

    in reply to: Post picture / single page #9813
    ProDesigns
    Keymaster

    Hello antiknatur,

    There is not an option to specifically remove the post picture from the post but it can be hidden via CSS.

    To remove featured image from blog single post via CSS, please log in to the admin area and go to “Appearance >> Customize >> Additional CSS”.
    Paste the below code in “Additional CSS” and save it:
    .single-post .content-area .featured-thumb{
    display:none
    }

    Hope this helps!

    Thank you

    Regards,
    Team ProDesigns Themes

    in reply to: Menu comes up behind the header logo #9812
    ProDesigns
    Keymaster

    Hello theadelco,

    The menu is not clickable due to the logo image overlapping the menu links. To resolve this, please follow the below steps.

    1. Login to the admin area and go to “Appearance >> Customize >> Additional CSS”
    2. Add the below CSS
    @media only screen and (max-width:900px){
    .site-header .site-branding {
    z-index:90;
    }
    }
    3. Click on “Published”

    This will solve the issue.

    Thank you

    Regards,
    Team ProDesigns Themes

    in reply to: mobile view menu problem #9400
    ProDesigns
    Keymaster

    Hi @Daniel Kelentey,

    You can add custom CSS to change color in only mobile version.

    Please log in to the admin area and go to “Appearance >> Customize >> Additional CSS”.
    Paste the below code in “Additional CSS” and save it afterwards:
    @Media(max-width:991px){
    .mean-container .mean-nav ul li a{background: #51676c!important; color:#ccff00;}
    .mean-container .main-navigation ul li.menu-item-has-children ul.sub-menu li a {color:#ccff00;}
    .mean-container .main-navigation ul li.menu-item-has-children ul.sub-menu li a:hover {color:#dd9933;}
    }

    You can set the color as you desire in the above rules.
    Hope this helps you.

    Thank you

    in reply to: Remove Slider Caption #9399
    ProDesigns
    Keymaster

    Hi @SBMaz18,

    The slides are being displayed via a 3rd party plugin, ‘Revolution Slider’.
    You would need to make some tweaks as mentioned in their documentation page here to get the look you desire.
    You should be able to find the required configurations for adjusting the look for different screens.

    Please let us know if we can help any further.

    Thank you

    Regards,
    Team ProDesigns Themes

    in reply to: hamburger menu mobile and tablet #9398
    ProDesigns
    Keymaster

    Hi @nathaleejoline,

    We would be glad to help you but we weren’t able to recreate the issues you were facing before working out what was done wrong.
    We would need the URL where we can check this. Also, the resolution may be achieved a little quicker if you could setup temporary credentials to the admin.

    Thank you

    Regards,
    Team ProDesigns Themes

    in reply to: Can’t use other footers #9397
    ProDesigns
    Keymaster

    Hi @giuliaocana,

    We tried to recreate the issue you were facing but we didn’t face any issue during our tests. It would help to have the URL of the site and temporary admin credentials for us to check & resolve.
    We apologize for not being able to respond earlier.

    Thank you

    Regards,
    Team ProDesigns Themes

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