Forum Replies Created

Viewing 40 posts - 841 through 880 (of 1,512 total)
  • Author
    Posts
  • in reply to: Hydra: Change masthead section background colour #31565
    Jesse Owens
    Keymaster

    Hi Wendy-

    It doesn’t have to be one of the palette colors, you can choose. Hydra’s a little tricky because it uses JavaScript to change the background as your visitor scrolls down the page, so you’ll probably want two rules for this.

    For the background before you scroll down, use this rule:

    .palette-primary .site-header { background-color: rgba( 62,62,62,0.8 ) !important; }
    

    The rule above is using the default color palette’s third color of #3e3e3e converted into RGBA so that the transparency of the original design is preserved.

    For the background after you scroll down, use this rule:

    header.smaller { background-color: #3e3e3e !important; }
    
    Jesse Owens
    Keymaster

    Hi Peter-

    Going off this log, it does look like this was a successful backup, and I’m glad to hear that you can download it from your cPanel. It’s likely that your PHP settings aren’t allowing the download size of 1.5G, causing the error when you’re trying to download your backup through the plugin.

    To fix this, first make sure you’ve increased your max_execution_time as I advised above, but also check your post_max_size setting and make sure it’s larger than your backup size. Since this one was 1.5G, you might choose 2000M as a good starter point for your post_max_size.

    Jesse Owens
    Keymaster

    Happy to help as always Wendy! Glad to hear it.

    in reply to: How to create a table of contents in Boldgrid? #31555
    Jesse Owens
    Keymaster

    Hi Kostiantyn-

    There are a couple of ways you can go about this. You can make your Table of Contents manually using Anchor Links, or you might choose to use a Plugin like Easy Table of Contents or another of the plugins available on WordPress.org.

    in reply to: Customizer Background Won’t Save #31552
    Jesse Owens
    Keymaster

    Hi Lefteris-

    I checked out the site you sent over, and I can only see the background that’s set up for your Coming Soon plugin, so it’s tough to say what might be going on.

    There are a couple of things to check. First, make sure your Westview theme is up-to-date. Navigate to Dashboard > Updates and update the theme, if needed.

    Second, it’s possible there might be a JavaScript error in your customizer. If you can check your browser’s error console and let us know if you see any errors there, we can dig a little deeper. Here’s a quick video tutorial on how to check your browser’s error console:

    Jesse Owens
    Keymaster

    Hi Peter-

    I’m sorry to hear about the repeated errors, we’ll be happy to help. Judging by this error, I’d speculate that you might be getting a timeout before the backup can complete zipping up. There’s two things you can try to improve this.

    1. Try switching your backup compressor from php_zip to System Zip. Navigate to Total Upkeep > Settings > Backup Process and use the Compressor option to switch it.

    2. Increase your PHP max_execution_time setting. You can usually find this in your cPanel account. Here are instructions from InMotion Hosting on how to change PHP Settings.

    If you’re still having trouble after making these changes, can you reply back with your backup log from Total Upkeep > Tools > Logs so we can take a closer look?

    in reply to: Understanding statistics #31530
    Jesse Owens
    Keymaster

    Hi Svyatoslav-

    The answer to this is really dependent on the type of website and individual circumstances. For example, the statistics in the screenshot that Marko shared:
    W3 Total Cache Statistics

    An administrator might look at these statistics and notice that the majority of their cache misses were 404 pages, and choose to enable Cache 404 (not found) pages in their Performance > Page Cache menu, or else investigate the source of all the missing links and resolve them.

    At the same time, some misses are expected, like wp-admin, AJAX, and query strings. Most administrators won’t want to cache these types of requests because they’ll be different for individual users.

    Jesse Owens
    Keymaster

    Hi Joe-
    Glad to hear you got that sorted out! I was doing the research on disabling the touch interaction for the gallery, so sorry for the delay, we were both writing at the same time!

    Jesse Owens
    Keymaster

    Hi Joe-

    Sorry if that wasn’t clear, the solution isn’t too complicated.

    Navigate to Customize > Advanced > Custom JS & CSS and add these two rules.

    1. Get rid of the weird gray artifact above the slider:

    .palette-primary .gridblock .wcsliderfadeauto li:before {
        background: none;
    }
    

    2. Disable all interaction on the gallery, but only on the “Personal Work” page:

    .page-id-551 .wc-gallery {
        touch-action: none !important;
        pointer-events: none !important;
    }

    I tested this last code snippet out on an Android Phone, but my sources (1) and (2) indicate that these rules should also work on an iPhone.

    in reply to: Thin Strip of space between header and content #31510
    Jesse Owens
    Keymaster

    Hi Nathan-

    It looks like you’ll need to switch that padding-top to margin-top if you’re going for the background image.

    in reply to: We can’t deactivate without killing the Yaviva.nl site #31507
    Jesse Owens
    Keymaster

    Hi Nils-

    I’m glad to hear that the site’s back up and running!

    At this point, I’d recommend updating the PHP memory limit directly from your hosting control panel. It looks like your host has a menu item called PHP Settings where you can control this setting. I’d try going to at least 512M.

    in reply to: Thin Strip of space between header and content #31504
    Jesse Owens
    Keymaster

    Hi Nathan-

    That strip is the padding on top of your entry-content div. You can get rid of that by adding this line to your Custom Theme CSS in your Customize > Advanced > Custom JS & CSS menu:

    div.entry-content { padding-top: 0px; }
    
    Jesse Owens
    Keymaster

    Hi Wendy-

    Probably the best way to accomplish this is with a plugin like Polylang (free) or WPML (commercial, but affordable and really easy to use) to allow you to make language “versions” of your site. Both of those plugins will allow you to translate your menu so that you’re still using the same menu, but it will show in the right language on the right pages.

    in reply to: Logo disappeared after latest W3 Total Cache Update #31499
    Jesse Owens
    Keymaster

    Hi Pietro-

    Since the plugin is disabled right now, it’s tough to say exactly what went wrong with your logo. My first guess would be that it might have been an issue with Lazy Loading.

    You can test this out by adding your logo’s classes to the Exclude Words list on your Performance > User Experience menu. Paste these two lines into the Exclude Words:

    kad-standard-logo
    kad-retina-logo
    

    Keep in mind that as a Pro Subscriber, you’re also able to access premium support directly from your plugin menu at Performance > Support if you have any more issues.

    in reply to: Where does Total Upkeep store backups? #31496
    Jesse Owens
    Keymaster

    Hi Peter-

    By default, Total Upkeep’s backups are stored in your hosting account’s home directory, in a folder called boldgrid_backup. This is best for security, because keeping it outside of your WordPress directory makes sure that it’s not visible to the public. You also have the ability to add a remote FTP server to store your backups offsite.

    If you upgrade to Total Upkeep Premium, you’ll also have the ability to store your backups on Google Drive, Amazon S3, or another S3-Compatible storage service like DreamHost’s DreamObjects.

    in reply to: How can I confirm my Account? #31493
    Jesse Owens
    Keymaster

    Hi Peter-

    I checked on the account for your email address p***b@p***e.com and it looks like you’ve successfully confirmed your account. Please let us know if you have any trouble, we’re happy to help.

    in reply to: Header Image/Background Image #31491
    Jesse Owens
    Keymaster

    Hi Mike-

    One way that you could accomplish this is to make your header background transparent, so that the background images shows through it. Set an image as the background in Customize > Background, and then add this rule to your Custom Theme CSS in the Customize > Advanced > Custom JS & CSS menu:

    .site-header { background-color: transparent !important; }
    
    in reply to: We can’t deactivate without killing the Yaviva.nl site #31485
    Jesse Owens
    Keymaster

    Hello Nils-

    It looks like you might be editing your theme’s functions.php file and not wp-config.php, the code you’ve posted looks pretty identical to functions.php of the Avada theme.

    The 500 error is likely due to a typo in .htaccess or one of the files you modified. You should check your server’s Apache error log or enable WP_DEBUG_DISPLAY so that we can see what the error message is that’s causing your 500 error.

    One thing you can try is to replace your .htaccess file with the WordPress Default (make sure to keep a backup of your existing one).

    You might also want to consider restoring a backup of your website so that you can get back to a functional state. Your hosting provider may also be able to provide assistance locating the error and resolving it.

    in reply to: How to delete my account? #31480
    Jesse Owens
    Keymaster

    Hi Carter-

    We don’t have any access to your websites, but you can do this by navigating to Plugins > Installed Plugins and deactivating the BoldGrid Plugins.

    in reply to: Do you have a staging service (for 50 sites?) #31475
    Jesse Owens
    Keymaster

    Hi Ricardo-

    Yes, you can use Cloud WordPress to host as many staging websites as you need. Packages are available in bundles of 5, 10, and 20 sites, so you could accomplish this with two packages of 20 and one of 10 for a total of 50 staging sites.

    Keep in mind that if you already have another BoldGrid Premium subscription, you’ll already have 15 sites included with your account.

    in reply to: Hide Tags, Post Date and Author on Posts using GridOne theme #31471
    Jesse Owens
    Keymaster

    Hi Joyce-

    Modify that last rule I mentioned to include this line-height value:

    body.blog .entry-title { 
      margin: 15px 0px;
      line-height: 1.6em; 
    }
    

    I found 1.6em to be about right to make sure that the decorative horizontal line isn’t covered up by text, but you can adjust that to suit your needs.

    in reply to: We can’t deactivate without killing the Yaviva.nl site #31452
    Jesse Owens
    Keymaster

    Hi Nils-

    Did you get a chance to check your nav-menus.php page for errors? It sounds like there might be a JavaScript conflict, which you might be able to diagnose by checking your Browser’s error console. Here’s a quick video on how to check your browser’s error console:

    I want to reiterate that I strongly suspect that W3 Total Cache isn’t the root cause of the issues with your menu editor, however there are a couple of different ways to get around the error you’re seeing when you try to deactivate.

    1. Increase your PHP Memory Limit. Most hosting providers will provide a method to do this in your hosting panel, or you can use the method I outlined above by adding the line to define the memory limit in your wp-config.php file:

    define('WP_MEMORY_LIMIT', '512M');

    2. Deactivate W3 Total Cache manually. You can use your hosting panel’s file manager, FTP, or SSH to delete the wp-content/plugins/w3-total-cache directory and the /wp-content/cache directory, and remove all of the lines from your .htaccess file that are in between the lines commented #Begin W3TC and #End W3TC.

    3. Use this trick to increase your PHP memory limit for a single WP-CLI command. If you have SSH access to your site, and WP-CLI installed, log in and run the following command:

    php -d memory_limit='512M' $(which wp) plugin deactivate w3-total-cache
    in reply to: Problem with images not being full width #31448
    Jesse Owens
    Keymaster

    Hi Nerida-

    I’ve never used MP Stacks before, but I did download it and tried to see if I could find a good way to make a full-width image. I found that I had to explicitly supply a max-width value to a very large number to make the image full-width. Unfortunately MP Stacks doesn’t allow you to specify a percentage for the brick’s maximum width, so I simply supplied a very high number in pixels:
    Max width for MP Stacks Brick

    in reply to: Post and Page Changes are not saved #31441
    Jesse Owens
    Keymaster

    Hi Olesia-

    Thank you very much for the update, yes we’ve heard a similar report from 3 separate users now, so if you can file a premium support ticket or email our private support team we’d be happy to take a look and see if we can get this resolved for everyone.

    Thank you!

    in reply to: Hide Tags, Post Date and Author on Posts using GridOne theme #31438
    Jesse Owens
    Keymaster

    Hi Joyce-

    If you’d really like to completely hide them, you can do it with this line in your Custom CSS:

    body.blog .entry-title { display: none; }
    

    However, that might not be the ideal solution. Your blog post’s titles are pretty important for the overall SEO of your site, and give your readers a better idea what they’d like to click on to read more. If you’d like to simply reduce that margin above and below the titles, you can do this instead:

    body.blog .entry-title { margin: 15px 0px; }
    

    The default value for those top/bottom margins is 60px, so you can adjust that number 15px to suit your taste.

    in reply to: Site Title & Logo Not In Menu #31435
    Jesse Owens
    Keymaster

    Hello Funda-

    The location of this menu will be a little different depending on which theme you’re using.

    If you’re using Crio, you can find it under Customize > Design > Header > Site Title/Logo & Icon

    If you’re using another BoldGrid Theme, you’ll find it under Customize > Site Title & Logo.

    If you’re not using a BoldGrid Theme, the customizer options may be different and you may need to check out your theme’s documentation to find out how to modify your Site Title and Logo.

    Jesse Owens
    Keymaster

    Hello Alex-

    I’m very sorry about the errors. We’ve released Total Upkeep version 1.14.8 to resolve this error. You can download it from WordPress.org using this link, or upgrade the plugin from your dashboard.

    Please let us know if you have any more questions or problems, we’re happy to help.

    Jesse Owens
    Keymaster

    Hi Nacela-

    I’m very sorry about the errors. We’ve released Total Upkeep version 1.14.8 to resolve this error. You can download it from WordPress.org using this link, or upgrade the plugin from your dashboard.

    Please let us know if you have any more questions or problems, we’re happy to help.

    Jesse Owens
    Keymaster

    Hello Valia-

    I’m very sorry about the errors. We’ve released Total Upkeep version 1.14.8 to resolve this error. You can download it from WordPress.org using this link, or upgrade the plugin from your dashboard.

    Please let us know if you have any more questions or problems, we’re happy to help.

    in reply to: How to Add Adobe Fonts #31427
    Jesse Owens
    Keymaster

    Hi Jay-

    I haven’t tried it, but I did find the Custom Adobe Fonts (Typekit) plugin on WordPress.org. It has pretty good reviews and over 60,000 active users. It’s also by the same developers as the Custom Fonts plugin.

    in reply to: Hide Tags, Post Date and Author on Posts using GridOne theme #31403
    Jesse Owens
    Keymaster

    Hi Joyce-

    You can accomplish this with a little bit of Custom CSS. Navigate to Customize > Advanced > Custom JS & CSS and add these lines to your Custom Theme CSS:

    Hide date and author (known as the “Post Meta”):

    div.entry-meta { display: none; }
    

    Hide tags on posts and on blogroll page:

    span.tags-links { display: none; }
    
    in reply to: We can’t deactivate without killing the Yaviva.nl site #31401
    Jesse Owens
    Keymaster

    Hi Nils-

    Generally speaking, W3 Total Cache shouldn’t be having any effect on the back-end of your website, like updating menus. Be sure to double-check Performance > Page Cache and make sure that you have Don’t cache pages for logged-in users. Did you get any errors or warnings while trying to update your menus?

    The error you received during deactivation is that the PHP Memory limit was exceeded. It looks like your site is limited to about 256M of memory, so you might want to consider updating your PHP memory_limit value to something like 512M. You can also increase the memory limit in your wp-config.php file using a line like:

    define('WP_MEMORY_LIMIT', '512M');
    
    in reply to: Post and Page Changes are not saved #31353
    Jesse Owens
    Keymaster

    Hi Mike-

    Thanks for the report, I’m sorry to hear about the issue saving posts!

    So far, we haven’t been able to replicate this issue in any of our testing. If you’re able to take a look at your browser console while you’re editing a post, we’ll be able to troubleshoot for you. Check out this quick video on how to access your browser’s error console:

    As a DreamHost customer, you also have access to Premium Support, if you’d like to file a premium ticket one of our technicians can log into your site and take a closer look for you.

    in reply to: [Resolved] Edits made in post and page builder are not saved #31352
    Jesse Owens
    Keymaster

    Hi Lara-

    I’m just checking in to see if this issue got resolved by deactivating that plugin, because we’ve had a few other users report similar issues. Are you still having trouble with your updates not saving?

    in reply to: Problem with images not being full width #31345
    Jesse Owens
    Keymaster

    Hi Nerida-

    I can’t say I’m familiar with using WordPress via MS Stacks, can you elaborate on the way you’re updating your content?

    If you can send us a link to a page with one of the images that’s not showing correctly, we’ll be happy to take a look and let you know how to make sure they’re full-width.

    in reply to: Couldn’t Install the W3 Total Cache #31343
    Jesse Owens
    Keymaster

    Hi Dharani-

    When you say, “WordPress suspends it,” do you mean that the plugin remains inactive after you activate it? If that’s the case, it’s usually because your web host does not allow W3 Total Cache to be activated on their server.

    This is sometimes the case with managed WordPress hosting solutions that already have built-in caching, notably GoDaddy’s Managed WordPress product.

    If that’s not the case, can you enable the WordPress Debug Log and try to activate the plugin again, and let us know what errors appear in your log?

    in reply to: Error Restoring backup – Permission Denied #31326
    Jesse Owens
    Keymaster

    Hi Mezi-

    I’m sorry to hear that you’re not able to restore your backups. These errors look like they are issues with file permissions on your server. Here are a couple of questions for you so we can help you get this resolved.

    1. Is this a network site of a WordPress Multisite install?
    2. Did a site crash cause you to need to restore this backup? If so, your site’s issues might also be caused by the permissions issues.
    3. Does your hosting provider offer a tool to fix file permissions for WordPress? Often times, you host will be able to resolve permissions errors like this if you’re able to reach out to their support team.

    in reply to: Where to set remote backups #31324
    Jesse Owens
    Keymaster

    Hi Richard-

    Sorry if that was misleading! Premium includes the ability to automatically store your backups in various storage locations, but doesn’t include the storage itself. You can use Google Drive as a storage location, which provides you with 15G for free with a Google account.

    in reply to: CTA, Inconsistent background, and fonts #31320
    Jesse Owens
    Keymaster

    Hi Sam-

    Thanks for reaching out, we’re happy to help! I’ll take your questions one-by-one.

    1. From what I can tell, there’s a single literal space character (&nbsp) at the bottom of your call-to-action widget. Without that space, your CTA should end right after the H2 element, “Let’s make change more meaningful.”

    2. The sections that don’t fill up the whole screen are set up as “container” sections, vs. “container-fluid” sections. Check out this video where one of our developers, Brad, walks you through the difference. Skip to about 1:50 mark where you can see how to adjust these to full-width in the Post and Page Builder:

    3. May I ask how you added your custom font? If you’re using a plugin like Use Any Font, your custom fonts will be added to the Customizer so you can assign them to Headings, Subheadings, Menu Items, and Main text, as well as the Site Title if you’re not using a logo. If you’re manually adding your font, you’ll need to use Custom CSS to specify the font family Cambria for the different elements of your page.

    in reply to: [Resolved] iPhone Background Image on Evolv Theme #31315
    Jesse Owens
    Keymaster

    Glad to hear it Lee! And thanks to Joseph for jumping in with the code to save the day.

Viewing 40 posts - 841 through 880 (of 1,512 total)