29 Tags Found For: “web developer

Full Web Page Screen Captures Natively in Chrome

While I have been enjoying the Chrome Extension “Screenshot Easy” which allows me to capture any area on the screen, it isn’t possible to capture the entire height of a webpage, only what is currently showing on your display. Here’s a Chrome...

Chrome: Clear Cache Data for a specific URL

Clear Cache Data for a specific URL This method allows you to clear the Google Chrome’s Cache Data for a specific URL. Press SHIFT+CTRL+I to open the Google Chrome Developer Tools panel. Go to the Network tab and select the Disable cache checkbox to enable that...

Divi Coming Soon page plugin FREE from DiviLife

This free plugin from DiviLife is wonderful. Coupled with the power of Divi’s Theme Builder you can redirect visitors to a page built with Divi. The Theme Builder comes into play as you can easily remove/hide site menus or footers from your bespoke coming soon...

Stop Divi Gallery Images From Cropping Using Functions

Currently the only options for the built-in Divi photo gallery are for “portrait” or “landscape” thumbnails, which means any aspect ratio outside of those will be cut off or cropped. The following snippet allows the thumbnail in the photo...

Stop Spam from Divi Contact Form with ReCaptcha v3

Since Divi update 4.0.7 it is possible to natively integrate Google ReCaptcha v3 right into your contact form settings with only a few simple steps. 1. Create a google recaptcha profile for your site here — google.com/recaptcha/admin/create   2. After creating...

Gravity Forms User Role Menu Restriction/Hide

Insert into your theme or child theme functions file: /* ------------------------- GRAVITY FORMS ROLES --- */ $role = get_role('editor'); $role->add_cap('gform_full_access'); add_action('admin_menu', function () { $user = new WP_User(get_current_user_id()); if...

Redirect Client Login to WordPress Home Page NOT to Dashboard

When I’m developing a site that is not visible to the public yet, possibly hidden behind my favourite “Coming Soon” wordpress plug-in Coming Soon Page, Under Construction & Maintenance Mode by SeedProd I will send clients the link to the site to...

Divi: Remove Projects From View in WordPress Admin Area

This code snippet doesn’t disable Divi’s own custom post type called Projects, but rather just removes it from view in the admin area. For numerous reasons you don’t want to remove the Projects custom post type (screwed up templates, time outs, etc.)...

Creating A Divi Child Theme

Rather than try to better Elegant Themes own guide, let me point you to their awesome article: Ultimate Guide to Creating a Divi Child Theme

Divi Friendly Global Footer

This trick will allow you to create a Divi friendly footer (within the front-end builder) and then via a child theme modification to the footer.php file, have it echo throughout your site. <style>.embed-container { position: relative; padding-bottom: 56.25%;...

Divi Align Module to Bottom

When trying to align content to the bottom of a column, use flex. <ol> <li>Make sure your row has the <strong>equalize heights</strong> option turned ON.</li> <li>In the <strong>column</strong> you wish to align the...

Website Copying, Mirroring and Downloading for Offline Browsing

I recently had to copy a static website for a client that no longer had access to their back-end. I used a program called HTTrack Website Copier to download the entire site locally, so that I could then upload it to a new server location. It only comes up once a year...

Force HTTPS But Not For Add-On Domain

Setting up a new add-on domain* for a client today and found that I could not access the new add-on domain name directly. It was appending the new add-on domain name to the root or main site url. So instead of taking the visitor to www.newdomain.com it was taking them...

Fix Dreamweaver Double-Spaced Code

  Due to Unix/Linux/Windows server environments, when you are editing code locally in Dreamweaver you’ll sometimes find your code double-spaced for the whole file. A quick fix is to run this find/replace command to remove the extra spaces. In Dreamweaver:...

InMotion Hosting: Fix Image Upload Error for WordPress

This may be pertinent for WordPress installs on InMotion web hosting only. I ran into an image upload error for a new WordPress install where the only message displayed was “HTTP error”. After following the usual actions of checking folder permissions, php...