Matias Mann
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: eliminar texto INICIO , esta duplicadoHola @infante46 , el texto “Inicio” es el título de la página. Tenés varias opciones:
1) Borrar el título en el Editor y dejarlo en blanco.
2) Consultar en el foro de la Theme a ver si tienen una opción para ocultar los títulos.
3) Ocultarlo con CSS en el Customizer con este código:.home .entry-title { display: none; }Las 3 van a funcionar. La que recomiendo es la de consultar con Astra a ver si tienen un opción para ocultarlo.
¿Tiene sentido?
Forum: Fixing WordPress
In reply to: Problem with Messed layout for a page after upgrading to latest 5.4Yes, it is related with the rewrite rule and the loop in your Bootstrap Tabs.
If you are manually writing the code to create the CPT I would suggest using a plugin such as Custom Post Type UI for creating the post type. You can export the code later and paste into your theme if you want to remove the plugin: https://es.wordpress.org/plugins/custom-post-type-ui/
Are you using a custom page template for “productos” page or using an archive-productos.php template or an archive-taxonomy.php template?
I tried: https://www.molinozuniga.cl/prodcutosv2/, it looks the same as https://www.molinozuniga.cl/productos/ on my end.
This pages won´t work:
– https://www.molinozuniga.cl/categorias_productos/
– https://www.molinozuniga.cl/prodcutosv2/
– https://www.molinozuniga.cl/productos/Forum: Fixing WordPress
In reply to: Problem with Messed layout for a page after upgrading to latest 5.4Since productos is not a page but a taxonomy archive, try this:
<li class="nav-item <?php if (is_tax( 'your_custom_taxonomy_name' );) echo 'active'; ?>"> <a class="nav-link" href="productos">Productos</a> </li>Forum: Fixing WordPress
In reply to: Problem with Messed layout for a page after upgrading to latest 5.4Can you paste the whole menu code here?
Forum: Fixing WordPress
In reply to: Problem with Messed layout for a page after upgrading to latest 5.4It productos page a taxonomy page? Can you paste the header of that page?
Forum: Fixing WordPress
In reply to: I can’t find parts of my theme to make editsGreat @evantubbergen. Good job! I would suggest reading some of the WordPress docs and start here: https://wordpress.org/support/article/new-to-wordpress-where-to-start/
WordPress and its community are awesome, so welcome!
Forum: Fixing WordPress
In reply to: Problem with Messed layout for a page after upgrading to latest 5.4Are you using WordPress menus?
– Try changing this:
<li class="nav-item <?php if (is_page('productos')) echo 'active'; ?>"> <a class="nav-link" href="productos">Productos</a> </li>– With this:
<li class="nav-item <?php if (is_page('productos')) echo 'active'; ?>"> <a class="nav-link" href="<?php echo home_url(); ?>/productos">Productos</a> </li>- This reply was modified 6 years ago by Matias Mann.
- This reply was modified 6 years ago by Matias Mann.
- This reply was modified 6 years ago by Matias Mann.
Forum: Fixing WordPress
In reply to: Problem with Messed layout for a page after upgrading to latest 5.4Hi @snippet24, about the menu redirects. Are you using custom links? If so, the link pointing for example to “Novedades” should be:
– Link: novedades (no trailing slash)
– Label: NovedadesIn thr productos page you have a “banner” active, that´s why you see the issue. Check how to remove that banner section.
Forum: Fixing WordPress
In reply to: I can’t find parts of my theme to make editsWelcome WordPress @evantubbergen, it seems that text is located in a Widget Area.
You can find/modify Widgets under Appeareace > Widgets.
Check if you can modify the text there first.Forum: Developing with WordPress
In reply to: Difficult time with add_editor_styleGood job @cramdesign ! Keep up the good work.
Forum: Fixing WordPress
In reply to: Author Picture not showing up on the postGood to hear that @ramg1967! Keep up the good job.
Close the ticket if you think it is solved and open a new one if you have more questions!
Matias.
Forum: Fixing WordPress
In reply to: Archive page based on advanced custom fieldGreat to hear that! I would suggest always using built in WordPress functionality first, it is easier, well documented, and proven by the community.
ACF is powerful but hs its caveats.
Please close the ticket if you think it is solved and open a new one if you have more questions!
Forum: Developing with WordPress
In reply to: Difficult time with add_editor_styleHi @cramdesign, I feel your pain!, Try putting the type.css in the root folder of the theme to discard path issues first.
Forum: Fixing WordPress
In reply to: Archive page based on advanced custom fieldHi @s545422, please take a look at the template hierarchy docs: https://developer.wordpress.org/themes/basics/template-hierarchy/
I would suggest that instead of using an ACF for location_categories, you create a custom taxonomy and associate it with the custom post type so you will be able to use built in WordPress functions a template files.
Like having an archive-location_categories.php template file to list all locations matching a location_category.
Makes sense?
Forum: Developing with WordPress
In reply to: Custom search with WP_Query@alissoncouto, what are you trying to achieve?
If you need a page listing all podcasts and only podcasts you can create a template file to display podcast archives:
1) Find the category.php template file or archive.php template file in your theme folder.
2) Copy the file, and change its name to archive-podcast.php
3) This will display your podcasts.https://developer.wordpress.org/themes/basics/template-hierarchy/