2022 November

How to Get Remote Files to Open in their Local Default Editor in Filezilla

If when you right click a remote file in Filezilla and select “view/edit” to open it locally:

Then Edit > Settings >

in “Filetype associations” add the following text:

. C:\Windows\system32\NOTEPAD.EXE %f
jpg “C:\Program Files\Adobe\Adobe Photoshop 2022\Photoshop.exe” %f
php “C:\Windows\System32\notepad.exe” %f

and OK

Further example with different default programs:

More here

Ways to write c:\Program Files so Windows understands (sometimes the space in the middle is a problem):
More here

read more
Go back to previous revision of page in WordPress

On the back-end in the browser use the find in page Ctrl+F keyboard shortcut and search for “revisions” and press the down arrow until….

You find the list of revisions and their dates:

Click the appropriate revision and press “Restore this Revision”:

More here

read more
How to Preserve Portfolio Items When Switching Themes from Voxco Theme to Scalia Theme
Must change all the portfolio items into posts with a plugin “Post Type Switcher” before switching the theme then switch them all back to being portfolio items. Scalia has a different enough portfolio system for them not to transfer across otherwise.

Where there are Owl_Slider widgets on a page can be better to delete everything and start again but:
The best way:
Activate the Voxco Framework Plugin so that the Owl Slider elements show in the backend editor.
Make notes in a word processor page of all the names of the .jpg images referred to in these elements where abouts they are on the page.
Delete the Owl Slider elements.
Deactivate the Voxco Framework plugin.
Refresh the back end.
View Portfolio Item to check that the bracketed shortcodes are gone.
Add Single Image elements as replacements with Full size and centre alignment.
Check front end.

read more
Make Browser Show Updating Colour Changes on WordPress Theme

1:Purge all in your local wordpress caching plugin:

2: If you use the Cloudflare CDN then login and select the relevant site:

3: Navigate to Caching>Configuration and turn on “Development Mode”. This temporarily turns off the CDN.

4: In the browser use the keys Ctrl+Shift+Delete and tick all the items and Clear Data:

On your front end view of the browser Ctrl+F5 and the colours set in the back-end should now be correct on the front-end.

read more
Read Twitter Without Logging In

Try Nitter a free and open source alternative front end website for twitter by clicking here.

read more
How to Access Linode Server by SFTP (FTP) Using Filezilla in Windows

Install and start Filezilla
Press Ctr+S Keys to Connect

More here

read more
How to Add MX record to Cloudflare DNS
read more
How to Add a Formula into LibreOffice Writer

More here

read more
Add Custom CSS to the Scalia theme

Best to use the Simple Custom CSS plugin from here:

as recommended here:

read more
WordPress Categories Automatically Add to Menu

Use the “JC Submenu” plugin and in theme functions.php add this code:

//Enable compatibility with theme custom menu walkers

add_filter(‘jcs/enable_public_walker’, ‘jc_disable_public_walker’);

function jc_disable_public_walker($default){
return false;
}

From here

and follow this video:
[sc_youtube video_id=”EP1-Bhfceq4″ width=”800″ height=”450″]

To add a list of subcategories automatically under one of the primary menus:

To add a list of posts underneath one of the primary menus:

read more