Posts by nessoila • 176 points
8 posts
-
1
votes1
answer227
viewsA: How to Enable My Header/Header Panel - Wordpress
To enable your Theme header, use: <?php get_header( $name ); ?>. To use the header image editor, in functions.php, use something like: add_theme_support( 'custom-header' ); You can check out…
-
1
votes1
answer164
viewsA: How the first image of the post shows - Wordpress
Arras slider system, as well as any featured-image Wordpress, works with local images. That is, you must upload the featured images inside your wp, using the Media menu. Here is an article which…
-
1
votes1
answer54
viewsA: Doubt with wp types
I use Types in a project. The categorization depends on how you set up the type structure, and how you named the taxonomy tag you will use. In my case, I used two category types. Every time I want…
-
2
votes1
answer207
viewsA: How do I make a registration in Moodle, and where the data is recorded?
The standard student table is mdl_user. The table where the registration is mdl_role_assignments. To enter a student, for example, through the bank, you can consult this file, where the Moodle SQL…
-
2
votes1
answer154
viewsA: What is the average cache time for static files?
Assuming you are using an apache server, you can refer to the Caching Guide (link), where some recommendations are found, such as this: The default expiry period for cached entities is one hour,…
-
0
votes2
answers2457
viewsA: 301 redirect outside the domain with htaccess
The best way to make one domain display files from another is by using 301 redirect that can be done by htaccess. Through the host’s CNAME you can also redirect, but there is no way to let the…
-
0
votes3
answers2621
viewsA: What is end-to-end encryption
A service like Telegram seems to solve large parts of the difficulties but has a problem, they provide everything that is needed. You have to trust them. You can’t have any back-door. I just wanted…
-
6
votes1
answer589
viewsA: Why is Wordpress Importer so slow to error?
Most problems related to xml import, whether in wordpress or any other application (php or not), are more related to server performance. Often people encounter errors related to timeout to load the…