Forum Replies Created

Viewing 40 posts - 81 through 120 (of 340 total)
  • Author
    Posts
  • in reply to: Configuring Contact Blocks #33541

    Hello Cliff,

    The Post and Page Builder Contact Blocks only include simple buttons that you can link to other pages or use for downloading files. If you want a form where the user can fill out required fields and have the input sent to your email, we recommend using weForms.

    First you will need to add a form, then setup the notifications.

    Please let us know if you have any other questions!
    Thanks,
    Nicole

    in reply to: issues after upgrading WP #32626

    Hi Bart,

    Sorry to hear you’re having problems using the Post and Page Builder after upgrading to WordPress 5.6. What web browser are you using to update your website? While we were updating our plugins to be compatible with WordPress 5.6, we noticed the problems you’re describing can happen intermittently in Firefox. Our developers are still working on complete Firefox compatibility, and in the meantime we recommend using Chrome.

    Please let us know how else we can help!

    Thanks,
    Nicole

    in reply to: White footer line removal #32624

    Hi Albert,

    To remove the white border on the footer, please add this CSS in the Customizer:

    .palette-primary .site-footer {
    	border-top: none;
    }

    Thanks for contacting BoldGrid, we’re always happy to help!
    Nicole

    in reply to: Comments & Fonts #32618

    Hello Ksenia,

    Thanks for contacting BoldGrid – we are always happy to help!

    By default comments are not enabled on pages in BoldGrid themes. To enable comments, please follow these steps, or read this article for more information.

    1. Navigate to Pages -> All Pages in your WordPress Dashboard.
    2. Hover over any page you’d like to enable comments for, and click Quick Edit.
    3. Check the box Allow Comments.

    BoldGrid uses the Google Font Library, which is why system fonts like Tahoma are not available. Google Fonts have Cyrillic options – https://fonts.google.com/?subset=cyrillic-ext – and should display correctly on your BoldGrid website. What specific issues are you having with the font so we can further assist?

    Thanks,
    Nicole

    in reply to: Pavillion Font Color in Home Page Header #32613

    Hello Ellen,

    Thanks for reaching out – sorry you’re running into problems changing the font color in your header. You are correct the content must be updated from the Customizer, however we recommend using custom CSS instead of changing the color in the widget itself.

    In the Customizer open the Advanced panel, then click on Custom JS & CSS and add this to the CSS section:

    .call-to-action-wrapper h2 span {
    	color: #DD5827 !important;
    }

    The text should now be orange. Please let us know if this solved the issue!

    Thanks,
    Nicole

    Hello Kenzie,

    Sorry to hear the Post and Page Builder was causing a fatal error. We recently updated our plugins for better compatibility with the WordPress Core 5.6 release and have not noticed any fatal errors with the most recent version. Please ensure all your plugins, themes, and WordPress itself are on the most recent versions.

    If everything is up to date and you encounter any more fatal errors when activating the plugin we would appreciate it if you could send us the full error message so our development team can investigate any additional compatibility issues.

    Thanks,
    Nicole

    in reply to: paragraph formatting #32609

    Hello Noradila,

    Thanks for reaching out – we’re happy to help!

    When you copy and paste from a Google doc into the editor, some formatting will come with that text even if it’s not immediately visible. On Windows, you can use the combination Ctrl + Shift + V to paste without formatting.

    In order to have everything on the page truly uniform, you’d need to create all the content in the editor, or copy and paste it all from elsewhere. In your case, I’d recommend recreating the first 4 lines and then they should match the rest.

    Please let us know if you have any other questions.

    Thanks,
    Nicole

    Hi Angelina,

    I’d be happy to help you enable comments on pages, just like they are on posts. The easiest way is to:

    1. Navigate to Pages > All Pages in your WordPress Dashboard.
    2. Hover over any page you’d like to enable comments for and click Quick Edit.
    3. Check the box Allow Comments and then click the blue Update button.

    If after doing this the comments are still not showing, please review our support article with additional information, including custom code you can use if needed.

    Please let me know if you have any other questions!
    Thanks,
    Nicole

    in reply to: Customizer Background Won’t Save #32539

    Hello W Watson,

    Sorry to hear you are having problems publishing the changes in the Customizer. In order to assist you further can you please let me know what theme you are using and if all plugins, themes, and WordPress itself is up to date in your install?

    Thanks,
    Nicole

    in reply to: Site Title & Logo Not In Menu #32537

    Hello Funda,

    The footer options available will depend on the theme you’re using. If you’re using BoldGrid Crio, you can learn more about customizing the Crio footer here.

    If you’re using a BoldGrid theme other than Crio, you can learn about working with footer widgets in this support article.

    I hope this helps, please let me know what theme you are using or your domain if you need further assistance.

    Thanks,
    Nicole

    in reply to: Bold grid and Namecheap #32535

    Hi Anthony,

    Thanks for reaching out about BoldGrid and Namecheap – we are happy to assist in any way we can! What problems are you running into?

    If you’re looking to transfer your website, we have this article to assist.

    Thanks,
    Nicole

    in reply to: Page background color #32533

    Hi Amanda,

    Thanks for contacting us – sorry you’re having issues getting the background of your website to be a color instead of the pattern. Before we jump to custom CSS to fix this problem, I’d like to check a Customizer setting to see if that will fix it.

    Please open the Customizer and go to the Background panel. If you see the Pattern & Color section, click the Image button at the top, like shown below, and then click Publish and close the Customizer. This should stop the background pattern from showing on your site.

    Customizer Background Panel

    Please let us know if this worked or if we need to troubleshoot further.

    Thanks,
    Nicole

    in reply to: Cancel Service #32186

    Hello,

    Thanks for trying BoldGrid’s Cloud WordPress service. Sorry to hear it hasn’t met your expectations, please email support@boldgrid.com and we can refund your purchase.

    Thanks,
    Nicole

    in reply to: using total upkeep with digital ocean spaces #31745

    Hello Kevin,

    Thanks for reaching out about Total Upkeep being compatible with Digital Ocean Spaces. I checked with our lead developer and unfortunately at this time they cannot be used together.

    Please let us know if you have any other questions.

    Thanks,
    Nicole

    in reply to: Can the header/footer be hidden for a single landing page? #31743

    Hi Leland,

    Thanks for the great question! At this time we are actively working on adding a new feature for custom page headers, and we expect it to release within the next few weeks.

    In the meantime, if you’d like to hide the header or footer on any single page, you can do so with custom CSS. First you’ll need to find the ID for the page or post you’d like to hide them on. To do this, open the page on the front end of your website, right click your mouse and inspector using your browser developer tools. Look for the body class near the top of the code, and in that section of code you will see page-id-# or postid-# – copy this code.

    Now open the Customizer and navigate to CSS/JS Editor to add custom CSS. You can use this sample code, replacing the postid-1 with your specific page-id or postid.

    .postid-1 .site-header,
    .postid-1 .site-footer {
        display: none;
    }

    Or, just for one:

    .postid-1 .site-footer {
        display: none;
    }

    Please let us know if this worked, or if you have any additional questions.

    Thanks,
    Nicole

    in reply to: Boldgrid editor frontend #31742

    Hello Mike,

    Thanks for reaching out about the Post and Page Builder working on the front end. Unfortunately at this time if you want to use the Post and Page Builder’s features you will need to edit the page from the wp-admin, or backend, of the website. We are working towards having our page builder be compatible with front end / full site editing in the future.

    Please let us know if you have any other questions.

    Thanks,
    Nicole

    in reply to: Strange return after visiting a page #31739

    Hello,

    To update your menu links, please start by going to Customize > Active Site in your dashboard. Once the Customizer is open, click on Menus and then the menu you’d like to adjust (likely named primary).

    To ensure the proper link is used, it may be best to remove the current Home link and add a new one. Click the dropdown arrow to open the Home link panel, and click the red Remove text link at the bottom. Next, click the Add Items button below the link list. Under Pages, you should see a link for Home with the text Front Page next to it. Add this link to your menu, and drag up to the top of the list.

    Click the blue Publish button at the top of the Customizer panel to save – now your Home menu link should be correct.

    Please let us know if you need any additional help.

    Thanks,
    Nicole

    in reply to: Haven Landing Page Image Size altered #31660

    Ok, to remove the white space below the header background, please try this code:

    .home .site-content {
    	padding-top: 0 !important;
    }

    I added .home to the code because I think you may want to keep the padding on the inner pages, but if not just remove that part.

    Thanks,
    Nicole

    in reply to: Automated Error Message from WordPress #31650

    Hello Michael,

    Thanks for reaching out – sorry you received this error while working with BoldGrid. It appears your website is missing some files for the Inspirations plugin. Please deactivate, delete, and then reinstall the plugin from here: http://repo.boldgrid.com/boldgrid-inspirations.zip to address this issue.

    Please let us know if you have any additional concerns.

    Thanks,
    Nicole

    in reply to: wont recognize black background #31648

    Hi Max,

    Thanks for reaching out, sorry to hear you are having problems getting Callaway to show your desired background. Let’s start by seeing what site background is active in the Customizer. Navigate to Customizer > Background > Pattern & Color and click the Remove Selected Pattern button under the Background Pattern heading. Next you can click into the Background Color input above and select what background you’d like used on your website.

    It looks like the on-page content is being created with Elementor, so if you want just a section of the page to have a black background, you will have to use Elementor to do so. If needed, you can reach out here: https://elementor.com/support/

    Please let me know if this helped.

    Thanks,
    Nicole

    in reply to: Title-Main not responsive – text overhangs #31646

    Hello,

    Thanks for contacting us – we are happy to help you adjust the font size of the h2 title-main in Grid One. Since Grid One uses a very large heading size, when using longer words we suggest using CSS Media Queries to set specific font sizes for different devices. I tested using your heading, and I found this code to work. You can copy and paste it into Customizer > Custom JS & CSS in the Custom Theme CSS section at the top of that panel:

    @media (max-width:767px) {
    h2.title-main {
    	font-size: 44px !important;
    }
    }
    @media (min-width:768px) and (max-width:1200px) {
    h2.title-main {
    	font-size: 60px !important;
    }
    }
    @media only screen and (min-width: 1200px) {
    h2.title-main {
    	font-size: 79px !important;
    }
    }

    Please let us know if this worked, or if you have any other questions.

    Thanks,
    Nicole

    in reply to: Haven Landing Page Image Size altered #31644

    Hello Bob,

    Thanks for reaching out about the Haven theme not behaving as you expect – we are happy to help! I believe making a small adjustment in the Customizer will fix this issue – please navigate to Customizer > Background and under Background Image Size, select Cover Page. That should make the background full width again, but if it doesn’t please let me know.

    Thanks,
    Nicole

    in reply to: missing backup? #31640

    Hi Joe,

    Sorry to hear you are having a problem with Total Upkeep taking backups. If you navigate in your dashboard to Total Upkeep > Tools is there anything showing in the Logs or History? Where are you storing your backups? Please let us know and we can investigate further.

    Thanks,
    Nicole

    in reply to: Website Crash after install #31637

    Hello Eduardo,

    We’re sorry to hear about your website crashing, but we’re definitely here to help! In order to investigate this issue further, can you please provide more details on exactly what happened? Are there any error messages? What code are you referring to adding after installing the Total Upkeep plugin?

    Thanks,
    Nicole

    in reply to: cancel subscription #31635

    Hello Ozan,

    To receive a refund, please email support@boldgrid.com and we can take care of that for you. Sorry to hear you are unhappy with the service – is there anything we can do to help?

    Thanks,
    Nicole

    in reply to: [Resolved] Haven theme background image mobile resizing #26274

    Hello,

    Due to responsive design, only part of the background image will show on some screensizes. On mobile, the background image crops towards the center to fit the screen size. We do not recommend using an image with text on top of it – the text should be added in the editor so the text will resize appropriately on mobile.

    I also noticed there is no h1 element on your page, since the site title is empty. So when you add the text on top of the image, make sure there is an h1 on the page for SEO purposes. More information on headings can be found here: https://www.boldgrid.com/support/boldgrid-easy-seo-plugin-product-guide/introduction-to-seo-content-and-structure/

    Thanks,
    Nicole

    in reply to: page titles #26270

    Hello,

    Unfortunately at this time there isn’t a way to pull the page title up into the header. Leaving the “Display page title” unchecked is fine as long as you add one h1 heading to the page. The h1 is what search engines look for on each page, and each page should only have one. It makes no difference if you add it yourself or use the core WordPress page title.

    If you’d like more information on SEO and headings, we have this article to help: https://www.boldgrid.com/support/boldgrid-easy-seo-plugin-product-guide/introduction-to-seo-content-and-structure/

    Thanks,
    Nicole

    in reply to: Hi! Question.. #26268

    Hello,

    Sorry to hear you are having issues with the Cobalt theme – when I looked at your website just now I saw a space background. If your site is set to use a color background, it should use the last color in the row from Customizer > Color Palette. If it is not, there is a bug we should look into.

    What is the last color in the palette set to when the site appears white? When does the background look different? With the Customizer open? When editing a page?

    Thanks,
    Nicole

    in reply to: How much time remaining #26265

    Hello,

    Thanks for trying our Cloud WordPress service, we are so glad you found it helpful! Installations never expire if you created it under a BoldGrid Central account – https://www.boldgrid.com/central

    If the site needs to be transferred, here is a helpful guide: https://www.boldgrid.com/support/total-upkeep/using-total-upkeep-to-migrate-wordpress-for-staging/

    Please let us know if you need anything else,
    Nicole

    in reply to: Remove blank space at header #26246

    Hello,

    I looked at your site and found some simple CSS you can add to the Customizer to remove the white space.

    Start by navigating to Appearance > Customize > Advanced > Custom JS & CSS

    Paste this code in the CSS box at the top:

    .site-content {
    padding-top: 0px;
    }
    
    .entry-content {
    margin: 0;
    }

    I did notice on the FAQ page the very first block has top margin on it, which is causing an even bigger gap on that page. You will need to go into the page itself and remove the margin-top from that block. You may have to go into text view to remove it:

    margin-top: 50px; should be removed from the first div on the page.

    Please let me know if you have any other questions,
    Nicole

    in reply to: Making a DIV clickable #26243

    Hello,

    It is possible to create clickable divs with WordPress and BoldGrid, we have this article detailing how to do so: https://www.boldgrid.com/support/page-builder/create-collapsing-accordion/

    Please let me know if you need anything else!

    Thanks,
    Nicole

    in reply to: Insert block under Woocommerce #26240

    Hello,

    The WooCommerce Shop page is what’s called a “loop” – it automatically displays your products without the use of a shortcode (there used to be a shortcode visible on the page in previous versions of WooCommerce).

    In order to add additional content where you’d like, you will need to use hooks and actions. These are explained here: https://www.businessbloomer.com/woocommerce-visual-hook-guide-archiveshopcat-page/

    You will need to be comfortable working in functions.php in order to do this. If you’d like to work safely in the cloud, and not on your live site, you can follow this guide to set up a staging site – https://www.boldgrid.com/support/total-upkeep/using-total-upkeep-to-migrate-wordpress-for-staging/

    Please let me know if you have any other questions,
    Nicole

    in reply to: [Resolved] squarespace #26238

    Hello,

    Yes! You can transfer a Squarespace site to WordPress. Here is an article explaining how to move the site: https://www.wpbeginner.com/wp-tutorials/how-to-properly-move-from-squarespace-to-wordpress/

    After transferring you can add any BoldGrid themes or plugins you’d like. Please let me know if you have any other questions.

    Thanks,
    Nicole

    in reply to: adding Field on Directory #26217

    Hello,

    How you add custom fields to your website depends on the theme you are using. Here is a link to the forum for your theme, as they will be able to answer your question in more depth: https://www.sktthemes.org/forum/

    Alternatively, you can try using Advanced Custom Fields from the WordPress plugin repo: https://wordpress.org/plugins/advanced-custom-fields/

    Hope this helps!
    Nicole

    in reply to: Menu Customizer not loading #26202

    Hello,

    Sorry to hear you are having issues customizing your menu – what theme are you using? Could you please provide the link to your website?

    It is best practice to delete any plugins that are not being used on your website. You can tell which plugins are active and inactive from Plugins > Installed Plugins. Active plugins have a blue background and inactive plugins have a white background.

    Keep in mind that all plugins, themes, and WordPress itself should be kept up to date. WordPress recently had a major release and can cause conflicts with older plugins.

    If you have concerns about updating or deleting plugins, we recommend taking a backup of your site and working on it in our Cloud WordPress environment so your website stays safe and unbroken. You can learn more about this process here: https://www.boldgrid.com/support/total-upkeep/using-total-upkeep-to-migrate-wordpress-for-staging/

    Thanks,
    Nicole

    in reply to: Extra html in page #26183

    Hello,

    Thanks for reaching out regarding the extra HTML on your page. The blue box is coming from a blockquote element on the page. If you edit the page in Text view, find and delete this to remove the blue box:

    <blockquote class=""><span style="color: #333333; font-size: 15px;">.</span>
    </blockquote>

    Please let me know if you have any other questions.

    Thanks!
    Nicole

    in reply to: How can you do global changes within pages #21996

    Hello.

    Thanks for posting your question regarding making changes to your Pages globally. I’m sorry to see that you are dissatisfied. I recommend submitting your feedback through the BoldGrid Central Portal’s “Feature Request”. This will notify the BoldGrid developers of your desires to consider adding them in future versions of BoldGrid.

    I hope this helps!
    Sincerely,
    Carlos D

    Hello.

    Thanks for posting your question regarding the Social Menu and the Page Title positions overlapping. I’m sorry to see that you are experiencing an issue with the Pavillion Theme. I went ahead and loaded up that Inspiration with the Social Media menu added as well. However, I was unable to replicate the issue with them overlapping. Could you possibly share the CSS code you are using to customize this? Additionally, if you could include any other details about your design to replicate the issue, this should helps us to more accurately diagnose the issue.

    Sincerely,
    Carlos D.

    Hello,

    I’m sorry to see that you are experiencing an issue with the Social Media menu and the Page Title. I’m unable to replicate the issue

    in reply to: swithching from go daddy #22008

    The process of migrating a website would depend on the current type of website you’re using. BoldGrid is a WordPress plugin suite. Also, we have a list of web hosting supporters which can provide specific advice.

Viewing 40 posts - 81 through 120 (of 340 total)