Tony Sanjaya
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] admin-ajax.php error 500LOL you right, PHP template have syntax error.
Thanks a lot man!
Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] admin-ajax.php error 500Ok, nevermind.
Thanks for your time!
Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] admin-ajax.php error 500ok, now i set it to true and WP_DEBUG_LOG also
no error.
wp-content/debug.log not created
Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] admin-ajax.php error 500Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] admin-ajax.php error 500Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] admin-ajax.php error 500Hi @dcooney thanks for the reply.
is this the log?Forum: Plugins
In reply to: [WooCommerce] All order not showing up in adminHi,
I belive this because of https://runcloud.io/, maybe software that they installed or something.
Currently I not using it anymore, all good now
Forum: Plugins
In reply to: [WooCommerce] All order not showing up in adminThe menu is therem but the list is gone
Forum: Plugins
In reply to: [WooCommerce] All order not showing up in adminAnd other things :
I added this code to functions.php
add_filter('woocommerce_registration_errors', 'registration_errors_validation', 10,3); function registration_errors_validation($reg_errors, $sanitized_user_login, $user_email) { global $woocommerce; extract( $_POST ); if ( strcmp( $password, $password2 ) !== 0 ) { return new WP_Error( 'registration-error', __( 'Passwords do not match.', 'woocommerce' ) ); } return $reg_errors; } add_action( 'woocommerce_register_form', 'wc_register_form_password_repeat' ); function wc_register_form_password_repeat() { ?> <p class="form-row form-row-wide"> <label>Konfirmasi Password</label> <input type="password" class="input-text" name="password2" id="reg_password2" value="<?php if ( ! empty( $_POST['password2'] ) ) echo esc_attr( $_POST['password2'] ); ?>" /> </p> <?php }
but the result is showing up in admin page. It supposed to be in register page
Forum: Fixing WordPress
In reply to: Section duplicate won’t deleteHi I cant see the repeat sections
Forum: Fixing WordPress
In reply to: Custom CSS code is not changing hover effectHi, i think you need to add class the the template file. The class is
.shake-slow
.Forum: Fixing WordPress
In reply to: FTP creditionals to upgrade plugins and wordpressmaybe you can try add this line in wp-config.php
define('FS_METHOD','direct');
Forum: Fixing WordPress
In reply to: Custom File Upload PageYou can try Contact Form 7 or Gravity Form
Forum: Fixing WordPress
In reply to: install.php re-appearing on sitecheck
wp_config.php
maybe the table prefix is not rightForum: Fixing WordPress
In reply to: Creating a Child Theme- `<?php
add_action( ‘wp_enqueue_scripts’, ‘my_theme_enqueue_styles’ );
function my_theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’);wp_enqueue_style( ‘rtl-bs’, get_template_directory_uri() . ‘/location/rtl-bootstrap.css.css’);
// and all of theme here
}
` - Yes you need add all those css files inside theme folder
- This reply was modified 7 years, 1 month ago by Tony Sanjaya.
- `<?php