jksastrology
Forum Replies Created
-
Hi Andrea,
I am pleased you enjoyed your professional astrology reading from JKS Astrology : ).
I will probably add some kind of verification to my registration form, to force a user to select from the list. Overall, your plugin is excellent though!
Jay
Forum: Plugins
In reply to: [BP Bulk Delete] I get an error when I try to deleteHello,
I just thought I would update you with my progress. I have just managed to solve the problem, and thought you would be interested to know what produced that error. It is becuase I did not have a setting called “User Groups” enabled in my buddypress settings.
Once this setting was activated, I could then see other bulk delete options on your plugin. Which is great by the way!
However, it seems to delete all messages regardless of the date I select. But maybe this is becuase I do not have the “activity streams” setting activated.
Thank you,
Jay
Thank you
This is the bit of code that the notice above is referring to.
Line 204 contains if ( $options[‘checkness’][‘time_stamp’] == true ) .
My checkout form does make use of time zones. It displays a number relative to GMT timezone for whatever country the customer is from. The time zone part (which is custom made by a developer I am no longer in contact with) fails to work on my website checkout form since moving host, which is the main issue I am having. I was wondering if this code may be the source of the issue?
if ( !empty($options['checkness']['set_timezone']) ) { date_default_timezone_set(''.$options['checkness']['set_timezone'].''); } $date = ( !empty($options['checkness']['twenty_hour'])) ? date("G:i T (P").' GMT)' : date("g:i a"); if ( $options['checkness']['time_stamp'] == true ) { echo '<p><strong>'.$options['checkness']['time_stamp_title'].':</strong> ' . $date . '</p>'; } if ( $order->payment_method_title && $options['checkness']['payment_method_t'] == true ) { echo '<p><strong>'.$options['checkness']['payment_method_d'].':</strong> ' . $order->payment_method_title . '</p>'; } if ( $order->shipping_method_title && ($options['checkness']['shipping_method_t'] == true)) { echo '<p><strong>'.$options['checkness']['shipping_method_d'].':</strong> ' . $order->shipping_method_title . '</p>';
Kind regards,
Jamie
- This reply was modified 4 years, 9 months ago by jksastrology.
- This reply was modified 4 years, 9 months ago by jksastrology.
Forum: Fixing WordPress
In reply to: Time Stamp Notice. What does it mean?Thank you. I will post it there instead
Forum: Fixing WordPress
In reply to: Inserting Google API key into Google GeocodeHello,
Sorry for the late response. It did take a while to sort out, but the link did help. Thank you.
Forum: Fixing WordPress
In reply to: How to Set Scroller to Bottom, after pressing a buttonHello,
Thank you so much for your response. The scroller is part of a plugin called “BP Better Messages”
Unfortunately I am not experienced in modifying php within a wordpress plugin, but trying very hard to learn.
I have set up a bp-custom.php file, which I use as a child page to modify code. Are you able to point me in the right direction on how I go about changing the way the scroller works. I am not quite sure how to implement the javascript.
Thank you for your time.
Jamie
I believe I did
Forum: Plugins
In reply to: [BP Profile Search] How to search a height range in feetThank you Andrea. That worked : )
Kind regards,
Jamie
Forum: Plugins
In reply to: [BP Profile Search] How to search a height range in feetHello Andrea,
Thank you for your response. And sorry for my late reply, I have been having trouble getting this height range code to work.
Well, actually your height range code does work perfectly on its own, but throws up an error (Cannot redeclare change_display) when used with a similar code I have for “Age range” search. After reading about this error, it seems like a function cannot be called twice, even when used for different things. I am not sure how to get around this problem. Hopefully you or others may know the best solution to this issue. Thank you for your time.
// Change bp member search form, allow age to be selected from drop down // add_action ('bps_field_before_search_form', 'change_display'); function change_display ($f) { if ($f->code == 'field_4' && $f->display == 'range') { $f->display = 'range-select'; $range = range (18, 99); $f->options = array ('' => '') + array_combine ($range, $range); } // Change bp member search form, allow Height to be selected from drop down // add_filter ('bps_xprofile_format', 'change_format', 10, 2); function change_format ($default, $field_id) { if ($field_id == 21) return 'decimal'; return $default; } add_action ('bps_field_before_search_form', 'change_display'); function change_display ($f) { if ($f->code == 'field_21' && $f->display == 'range') $f->display = 'range-select'; } }
Forum: Plugins
In reply to: [BP Profile Search] How to search a height range in feetHello Andrea,
Thank you for your quick response.
I am using “Drop Down Select Box” field type, when in the Profile Fields backend.
I have structured the drop down list like this:
5 feet 4 inches
5 feet 5 inches
5 feet 6 inches
5 feet 7 inches
5 feet 8 inches
5 feet 9 inches
5 feet 10 inches
5 feet 11 inches
6 feet 0 inches
6 feet 1 inches
6 feet 2 inches
6 feet 3 inchesMy goal in BP Profile Search is to allow users to search between 2 different heights (as seen above). Such as searching for members who have heights between “5 feet 4 inches” and “6 feet 3 inches”
Thank you,
Jamie
- This reply was modified 4 years, 10 months ago by jksastrology.
Forum: Plugins
In reply to: [BP Distance Search] How Do I Remove the Km/m field?Thank you very much. It worked.
Kind regards,
Jamie
Hello Wordplus,
Overall, I really like the plugin. And will probably buy the Pro version in the future. But I just need to tweak it. I am using my own theme, so trying to style this plugin myself.
Currently I am actually having 2 issues with the styling:
Issue 1.
I can make the plugin look good in desktop view, but I have trouble when it comes to mobile view. In mobile view the scroller window appears too big for the screen. I am having trouble resizing the scroller window via CSS. I assumed that disabling the scrolling window would help me style it.Issue 2.
Also, I noticed that my logo and nav bar disappear when clicking on a private message. Ideally, I would like to have the logo and nav bar still appear once in a private message.Any help is much appreciated.
If this forum allows me, I can share a screen shot of the issue if you like.
Kind regards,
Jamie
Forum: Plugins
In reply to: [BP Distance Search] Google Place Autocomplete ErrorHello Andrea,
Thank you. I did not know the error shows in the console. You was right. Issue is now resolved.
Jamie
Hello Benjamin,
Thank you for your response. What is the difference between GeoIP and GeoIPv2 ?
I am very new to coding by the way.
Also, what is the difference between the GeoIP Apache mod, and the GeoIP detection plugin?
By goal is to use the wordpress GeoIP detection plugin in replace of the GeoIP apache module.
Thank you,
Jay