Xolluteon
Forum Replies Created
-
Forum: Plugins
In reply to: [X-tra Ordinary WooCommerce Product Carousel and Slider] Fatal Error and BugHello,
It would be great for me if you can at least share a screenshot for the error.
Looking at your response saying that you use localhost server, Please make sure that some ports are open for the plugin to contact several CDN for it’s resources. One way to check if it’s not conflicting with your current theme is to use twentyffifteen standard theme and see if it’s working or not. It could make sure that the plugin is not conflicting with one or more functions inside your theme, but then when using localhost it could be very different with when you’re using a hosting server especially since the error message is on the slider template(/home1/subdirectory/wp-content/plugins/xox-woocommerce-slidercarousel/includes/templates/slider/default.php on line 9)Anyway, I hope I can be more helpful especially since the error report is very rare (1 from 200+ active installs). I found it tough to replicate the issue you’re having. If it could help maybe this link could shed some light for you: https://www.ads-software.com/support/topic/catchable-fatal-error-object-of-class-wp_error-could-not-be-converted-to-string-2?replies=41
Sorry if I can’t be more helpful, I will mark this topic as resolved as there’s no way I can help you out on this condition.
Thanks,
ArungHello Marilyn,
Firstly, sorry for the late respond. I’m still a bit new with the support system in www.ads-software.com
To have your slider or carousel show up in your desired page you can do one of these steps:
- On your desired page or post editor, you can add the shortcode by clicking on the shortcode tool for this plugin in the top of your editor, make sure that your editor is in “Visual” mode when you want to do this. Take a look on the screenshot page of this plugin here: https://www.ads-software.com/plugins/xox-woocommerce-slidercarousel/screenshots/
- If your theme is using widget for content and sidebar, you can also add it through your widgets editor, described as well on the screenshot page
- You can directly embed the code in your theme files, by using do_shortcode function, take a look at the FAQ page: https://www.ads-software.com/plugins/xox-woocommerce-slidercarousel/faq/
FYI, this plugin doesn’t create custom post type posts that can be viewed in browser. That’s why it returned with 404 – Page Can’t be found error.
I hope I can help you in a way, and hope this plugin help you grow your business. Thank you for your download.
Forum: Plugins
In reply to: [X-tra Ordinary WooCommerce Product Carousel and Slider] Fatal Error and BugHello,
Sorry for the late respond,
For your #1 question
would you be able to send out the URL of your website. It shouldn’t be creating WP_Error as it’s attached not in the core WordPress function. It could be caused by other plugin function which.For your #2, #3, #4 question
#2
It will be in the next release that the view page button will be removed from edit/add new slider page. The plugin it self will not create a viewable custom post type.#3
You can always set the image size using CSS, this plugin was made to accommodate people who want to have a very customized slider/carousel#4
Though this issue had only being reported by you, I will look in to this and check if I can send the bug fix soon enough.Thank you for trying my plugin.
Hi too,
Thank you for the review, I am planning to excel this plugin to be able to do exactly what you mean though it would be very theme dependent. For now, you can actually do that by 2 ways:
1. Using the widget (if your theme use widget/sidebar).
2. Use a shortcode and embed it in your theme files directly using do_shortcode function.Hope My plugin can help to grow your business.
Forum: Plugins
In reply to: [Contact Form 7] Integrating Contact Form 7 with SalesforceWhy don’t you use jquery and some simple php code;
make a hidden field in your contact form ie: [“url_post”]$(function(){ $('input[name="url_post"]').val('<?php echo $_SERVER['HTTP_HOST']; ?>'); });
Then send the information captured by the [“url_post”] to salesforce using alexhager tutorial…
Forum: Fixing WordPress
In reply to: Simple Login Box in HeaderOkay,
I figure it now, it was my bad i didn’t notice 1 tiny option. So the step is like this:
1. Make sure you enable the “Anyone can register” option in general setting, if you are not sure read this article https://www.dummies.com/how-to/content/how-to-allow-user-registration-on-your-wordpress-n.html2. If you are making your own theme write this on your header.php on your theme folder around line 77 (after the </hgroup> or put it somewhere else you like just don’t broke the other stuffs)
<!--Login Form Begin--> <?php if (!is_user_logged_in()){ ?> <div id="login-form"><!--create new id on css just to make it easy to order things--> <?php form_login() ; ?><!--this is my own modification code because i hate the paragraph used on wp_login_form(), i wrote it on function.php in my theme folder--> <?php wp_register('', ''); ?> | <a href="<?php echo wp_lostpassword_url( get_permalink() ); ?>" title="Lost Password">Lost Password</a> </div> <?php } else { ?> <div id="login-form"> <p> </p> <p> </p> <p> </p> <?php wp_register('<p>', '</P>'); ?> <a href="<?php echo wp_logout_url( get_permalink() ); ?>" title="Logout">Logout</a> </div> <?php }?> <!--Login Form End-->
3. modified your style.css to get the look you want
4. If you do anything right you’ll get something similar to https://dl.dropbox.com/u/91247708/ss%20frmlogin.jpgHope you’ll find it usefull
Cheers,
Forum: Fixing WordPress
In reply to: Simple Login Box in Headeroh and yes, i forgot to mention that i also combine it with function wp_login_form() to make that code, a little mix here and there
Forum: Fixing WordPress
In reply to: Simple Login Box in HeaderHi,
Have you try this link https://www.wprecipes.com/add-a-login-form-on-your-wordpress-theme ?
I’ve tried it and have it modified like this:
<?php function form_login( $args = array() ) { $defaults = array( 'echo' => true, 'redirect' => ( is_ssl() ? 'https://' : 'https://' ) . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'], // Default redirect is back to the current page 'form_id' => 'loginform', 'label_username' => __( 'Username' ), 'label_password' => __( 'Password' ), 'label_remember' => __( 'Remember Me' ), 'label_log_in' => __( 'Login' ), 'id_username' => 'user_login', 'id_password' => 'user_pass', 'id_remember' => 'rememberme', 'id_submit' => 'wp-submit', 'remember' => true, 'value_username' => '', 'value_remember' => false, // Set this to true to default the "Remember me" checkbox to checked ); $args = wp_parse_args( $args, apply_filters( 'login_form_defaults', $defaults ) ); $form = ' <form name="' . $args['form_id'] . '" id="' . $args['form_id'] . '" action="' . esc_url( site_url( 'wp-login.php', 'login_post' ) ) . '" method="post"> ' . apply_filters( 'login_form_top', '', $args ) . ' <label for="' . esc_attr( $args['id_username'] ) . '">' . esc_html( $args['label_username'] ) . '</label> <span><input type="text" name="log" id="' . esc_attr( $args['id_username'] ) . '" class="input" value="' . esc_attr( $args['value_username'] ) . '" size="15" tabindex="10" /></span><br> <label for="' . esc_attr( $args['id_password'] ) . '">' . esc_html( $args['label_password'] ) . '</label> <span><input type="password" name="pwd" id="' . esc_attr( $args['id_password'] ) . '" class="input" value="" size="15" tabindex="20" /></span><br> ' . apply_filters( 'login_form_middle', '', $args ) . ' ' . ( $args['remember'] ? '<label><input name="rememberme" type="checkbox" id="' . esc_attr( $args['id_remember'] ) . '" value="forever" tabindex="90"' . ( $args['value_remember'] ? ' checked="checked"' : '' ) . ' /> ' . esc_html( $args['label_remember'] ) . '</label>' : '' ) . ' <input type="submit" name="wp-submit" id="' . esc_attr( $args['id_submit'] ) . '" class="button-primary" value="' . esc_attr( $args['label_log_in'] ) . '" tabindex="100" /> <input type="hidden" name="redirect_to" value="' . esc_url( $args['redirect'] ) . '" /> ' . apply_filters( 'login_form_bottom', '', $args ) . ' </form>'; if ( $args['echo'] ) echo $form; else return $form; } ?>
Have it a go, and let us know what the result you get, just to remind you. You might have to play around with css to get the result you want.
Oh and also, i haven’t figure out too about the function wp_register() it just doesn’t show up anything. Maybe guys from wordpress will make it clearer.
cheers,
Forum: Plugins
In reply to: [MobilePress] [Plugin: MobilePress] Mobilepress site hackedYes, think the site they wrote in this page is all burned down. Would like to try this plugins but am doubt cause no screenshot or whatever
Problem solved for temporary, i’ll use this plugin first
https://www.ads-software.com/extend/plugins/header-image-slider/
because if i use my own jquery autoslider it would use my own image folder the way i want to. Do you mean i have to create a whole new plugin for the header image that i want, but how i can get rid of the default from twenty eleven?!