Saturday , February 22 2025

Articles

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 »

Css styles for WordPress admin in functions.php

If you need to add individual styles, and they are only a couple of lines, you can add them directly to functions.php: add_action('admin_head', 'webinp_style'); function webinp_style() { print '<style> tr[data-slug="to-top"] {display: none !important;} </style>'; } Between <style> and <style> you need to write your own CSS styles.

Read More »