Posts by Disner • 56 points
9 posts
-
1
votes2
answers560
viewsA: How to center image
Or separating selectors in Transform .elemento { position: absolute; top: 50%; left: 50%; transform: translateX(-50%) translateY(-50%); }
-
0
votes3
answers338
viewsA: How to remove right edge using border-Radius
you can decrease the border-Radius from the left side border-bottom-right-radius: 40px; border-top-right-radius: 40px;
-
0
votes2
answers833
views -
0
votes3
answers131
viewsA: Why doesn’t the footer stay hidden and mess up the page
Was missing z-index in footer css, and the first two Ivs were not closed properly. a { text-decoration: none; } ul li { list-style-type: none; } .text-center { text-align: center !important; } .menu…
-
0
votes2
answers219
viewsA: get_the_author and no function to get information from the author of the post works on the theme
I tested your code, saw several errors The: <?php get_footer(); ?> But I believe the problem is in the loop, you need to insert the call to the function inside it, for example: <div…
-
0
votes1
answer16
viewsA: View Taxonomy on the edit page
Need to insert to support show_in_rest <?php function registraIdiomas(){ register_taxonomy( 'idioma', 'post', array( 'label' => __('Idiomas'), 'rewrite' => array('slug' => 'idioma'),…
-
0
votes2
answers85
viewsA: block wordpress 'author' page
Add this to the . htaccess file, it will redirect all author requests looking for a number (Author ID) to the home page: <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond…
-
0
votes2
answers219
viewsA: get_the_author and no function to get information from the author of the post works on the theme
I think the problem is if(is_single()): ... He’s not getting the author ID, I don’t know where you’ll display it but if it’s in the post itself try: if(is_singular('')): ... // ou…
-
3
votes1
answer306
viewsA: Call function for created div only
I think it should be the id, the id is unique and so it is not working, each call should have its different id. You could set an example <input id="upload1"