Andrés Vega
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Add Icon to Social Links WidgetHello @sneedbreedley I hope you are well today ??
Some of the WordPress templates may not have social icons available such as TikTok since it is a new social network, when this happens I recommend using plugins such as
https://es.www.ads-software.com/plugins/social-icons-widget-by-wpzoom/
which allow you to add all kinds of social icons.Forum: Everything else WordPress
In reply to: Resizing LogoHi @adminbuyit I hope you are well today
Remember that each theme works differently in the customization, try to look in the theme options if there is an option where you can control the height and width to change the size, if not possible you must do it from css, see the following picture of how I do it.
.logo img { max-height: 67px; }
Forum: Everything else WordPress
In reply to: How can I make Email field not-required?Hello @nabidanzum I hope you are well
Try to put the next code in your functions.php
// This will suppress empty email errors when submitting the user form add_action('user_profile_update_errors', 'my_user_profile_update_errors', 10, 3 ); function my_user_profile_update_errors($errors, $update, $user) { $errors->remove('empty_email'); } // This will remove javascript required validation for email input // It will also remove the '(required)' text in the label // Works for new user, user profile and edit user forms add_action('user_new_form', 'my_user_new_form', 10, 1); add_action('show_user_profile', 'my_user_new_form', 10, 1); add_action('edit_user_profile', 'my_user_new_form', 10, 1); function my_user_new_form($form_type) { ?> <script type="text/javascript"> jQuery('#email').closest('tr').removeClass('form-required').find('.description').remove(); // Uncheck send new user email option by default <?php if (isset($form_type) && $form_type === 'add-new-user') : ?> jQuery('#send_user_notification').removeAttr('checked'); <?php endif; ?> </script> <?php }
- This reply was modified 3 years, 7 months ago by Andrés Vega.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce product block images not loadingHello @metadadaist1 I hope you are well.
Can you try deactivate all the plugins except WooCommerce? it seems to be a conflict problem between them.
Forum: Everything else WordPress
In reply to: En mi web hay un banner de cookies que no reconozcoDe nada, no olvides marcar como resuelto el post.
Forum: Everything else WordPress
In reply to: En mi web hay un banner de cookies que no reconozcoHola @juanma97x espero estes bien
El banner que aparece en la parte de arriba del sitio web con dos botones (Aceptar y Rechazar) viene desde el plugin de hubspot.com, revisa si lo tienes activo y conectado, para modificarlo debes de hacerlo directamente desde tu cuenta en hubspot.com
Espero con esto soluciones ??
You can upload the video on an online platform like Youtube, for security reasons I can’t download the file you send.
Hello @honicong I hope to help you with this
What kind of file do you want to upload?
Forum: Fixing WordPress
In reply to: Add new Post redirect to home page of my WebsiteHello @tarunkasipandi
Could you explain it more, cannot you see the post in home or you cannot publish post from the WordPress admin?
Forum: Fixing WordPress
In reply to: How to maintain the same url structure within pages/postsHello @monolion
You have to know that WordPress joins something called Permanent Links which is important to update in certain cases to regenerate the urls if they were changed or added.
This you can be find in Setting > Permalinks there you can change the url structure if you want too.
If you want to change the url structure in pages or posts you can do that directly in the post or page, you look the next image.
Forum: Fixing WordPress
In reply to: Locked out – no access to wp-admin after editing wp-config.phpHello @jsaturno
Try to use the next code line in your wp-config.php
define( 'FS_CHMOD_DIR', ( 0755 & ~ umask() ) ); define( 'FS_CHMOD_FILE', ( 0644 & ~ umask() ) );
And after try to update your database with this url wp-admin/upgrade.php
Forum: Developing with WordPress
In reply to: Header and columnYou`re welcome @nutthaphol don’t forget mark as resolved the topic. ??
Forum: Developing with WordPress
In reply to: Header and columnHello @nutthaphol you can add a little bit padding with CSS
.kingster-sidebar-wrap.clearfix.kingster-line-height-0.kingster-sidebar-style-right { padding-top: 50px;
You can add this css code from Customization in the options theme ??
Thank @karmapala to share your answer ??
Forum: Fixing WordPress
In reply to: Widgets not workingGreat! @sloporto Good thing you found the solution and thank you for sharing it in the forum, so others will have the solution.