Anass Rahou
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Tema y plug in para slider en portada¡Hola Victor!
Primero que todo, me permito informarle que, este foro de soporte es del inglés. Para futuras preguntas en español, las puedes hacer directamente en el foro español para tener más posibilidad de obtener una respuesta.
https://es.wordpress.org/support/forums/
Lo que necesitas es un trabajo más personalizado, por el cual deberías contratar un desarrollador de WordPress para conseguir el mejor resultado. Sin embargo si tienes conocimientos suficientes puedes hacerlo de forma manual modificando el tema (skin).
Es un poco complicado encontrar un tema gratuito que incluya un espacio en el lugar determinado que deseas y que te permita insertar un Slider.
Aquí te dejo un enlace que filtra los temas que incluyen un slider o que ofrecen esa posibilidad, busca entre ellos a ver si encuentras alguno que cumpla.
https://wordpress.org/themes/search/slider/
Espero que esto te ayude.
Forum: Developing with WordPress
In reply to: Problem with menu from scratch in wordpress.Perfect!
Glad to help you!
Forum: Everything else WordPress
In reply to: WP does not say upgrade available for my pluginHello there!
Your plugin page says the following: Last updated: 18 hours ago and Version: 2.6.0
It seems that everything is ok with your plugin.
Forum: Fixing WordPress
In reply to: Unable to save theme edits in 4.9.6Hello there!
I recommend you to install a plugin called Health Check plugin that is used to detect all possible problems that your themes or plugins they can have.
Health Check plugin can help you with troubleshooting common problems with websites, and to provide debug information to help with identifying problems with site setups.
Make sure to take a full and complete backup of your website before using this plugin.Let me know if this plugins help you to detect what is wrong with your theme.
Forum: Fixing WordPress
In reply to: Untitled_# Posts Auto CreatedHello there!
First of all. I recommend you to deactivate ALL you current active plugins on your WordPress installation, and switch to a default WordPress theme like Twentyseventeen, and check if the problem is gone.
If so, the definitely the problem is caused by a plugin or you theme. Activate them one by one until you find what one is causing this mistake.
Let me know if this helps you with this issue.
Forum: Fixing WordPress
In reply to: White screenHello there!
First of all. I recommend you to deactivate ALL you current active plugins on your WordPress installation, and switch to a default WordPress theme like Twentyseventeen using FTP or cPanel files manager, and check if the problem is gone.
If so, the definitely the problem is caused by a plugin or you theme. Activate them one by one until you find what one is causing this mistake.
Let me know if this helps you with this issue.
Forum: Fixing WordPress
In reply to: error not able to edit postHello there!
First of all. I recommend you to deactivate ALL you current active plugins on your WordPress installation, and switch to a default WordPress theme like Twentyseventeen, and check if the problem is gone.
If so, the definitely the problem is caused by a plugin or you theme. Activate them one by one until you find what one is causing this mistake.
Let me know if this helps you with this issue.
Forum: Fixing WordPress
In reply to: Table FooterI will recommend you to use a plugin called Magic Liquidizer Responsive Table that will help you to make responsive (adaptable) HTML tables desing.
Give this a try and tell me about your experience with it.
Forum: Developing with WordPress
In reply to: Problem with menu from scratch in wordpress.Hello there!
First of all, here you have a more practice code of how to register navigation menus in WordPress programmatically.
// Register Navigation Menus function ar_navigation_menus() { $locations = array( 'menu_header' => __( 'Menú Páginas Superior', 'text_domain' ), 'menu_footer' => __( 'Menú Páginas Footer', 'text_domain' ), ); register_nav_menus( $locations ); } add_action( 'init', 'ar_navigation_menus' );As you can see, with the function
register_nav_menusyou do not need to calladd_theme_support( 'menus' );function.After that, you will need to add
menu_classand/ormenu_idarguments towp_nav_menusthat your theme is using to design the menus.You have a lot of arguments that you can discover on the link down bellow, and all the posibilites they can help you to make a great menu.
https://developer.wordpress.org/reference/functions/wp_nav_menu/
Let me know if this helps you.
Forum: Fixing WordPress
In reply to: Translation of “Continue Reading” not displayedPerfect!
Glad to help you. 🙂
Forum: Fixing WordPress
In reply to: Menu appears in reverse order, but navigates correctlyHow have you created that menu? are you using any plugin to achieve that or you used the default WordPress menu from the appearance section.
If you have used the default menu of WordPress, make sure that the first pages should be at the top, and the last pages of menu at the bottom.
You can learn more about creating menus in WordPress from the link down below.
Forum: Fixing WordPress
In reply to: Create a standard excerpt for posts using shortcodesFirst of all. WordPress by default does not support the categories on the “pages” post type. So, i think you mean posts.
It depends a lot on what possibilities your current theme offers to hook content in a specific location of your website posts.
function ar_add_new_content( $content ) { global $post; $post_cat = get_the_category( $post->ID ); if ( $post_cat[0]->name === 'Markup' ) { $extra = '<p>Summary: [summary]</p>'; return $extra .= $content; } return $content; } add_action( 'the_content', 'ar_add_new_content' );For example, this code will check your current post category, and if the name is Story, then, it will show all the content you put inside
$extravariable.Let me know if this is what you are looking for.
- This reply was modified 7 years, 11 months ago by Anass Rahou.
Forum: Fixing WordPress
In reply to: Question about Update service/Ping and post typeHello there!
Can you explain please more about the error that you are trying to solve to help us understand the dimensions of what is really happening.
Forum: Fixing WordPress
In reply to: Open CalendarHello there!
Have you tried a booking plugin like Booking Calendar for that you want?
Here is the link : Booking Calendar
Let me know if this works for you.
Forum: Fixing WordPress
In reply to: scrolling fixed menu does not work on mobileHello there!
To make changes on a theme that has been developed by another person, it will be a good idea to contact directly with the developer to fix this issue. And ask him if there is any options panel of the theme, that allows achieve your desired effect without coding.