Saturday , July 5 2025

Articles

How to disable click on links using CSS?

Easy question, easy solution. We can disable click on all links, or we can use id or class for the particular links that should be unlickable and use: pointer-events: none; I use it for the case when I need to disable clicks on the images to avoid popup windows on …

Read More »

How to create an isometric grid

The easier way to create isometric grid: 1. Add a Line with the Line tool; 2. Select Line created > Effects > Distort and Transform > Transform; 3. Use “Move” – 30px for the artboard ~1500x1500px, Copies: 130; 4. Object > Expand appearance; 5. With selected group, double-click on the …

Read More »

How to add Round Cube in Blender

If you cannot find the “Round Cube” option when adding a new Mesh object in Blender (Add > Mesh > Round Cube), you need to enable the Extra Objects add-on first. This guide will show you how to activate this add-on and start using the Round Cube option in your …

Read More »

How to open html pages without .html

If your site uses links like http://domain.com/testpage.html and http://domain.com/demo.html, and you want them to open like http://domain.com/testpage and http://domain.com/demo, you can use this solution. Go through FTP or a File Manager to the folder with the site files. Open file .htaccess and add the following code: RewriteEngine on RewriteBase / …

Read More »

How to remove h3 from AAPF – Advanced Ajax Product Filters (Rocket)

This article is about how to remove unused h3 tags, but not completely – just replace them to div tags. To solve this problem, you need to add this code to functions.php: add_filter('BeRocket_AAPF_template_full_content', 'some_custom_berocket_aapf_template_full_content', 4000, 1); add_filter('BeRocket_AAPF_template_full_element_content', 'some_custom_berocket_aapf_template_full_content', 4000, 1); function some_custom_berocket_aapf_template_full_content($template_content) { $template_content['template']['content']['header']['content']['title']['tag'] = 'div'; return $template_content; }

Read More »