PinkishHue
Forum Replies Created
-
I wasn’t looking at the users profile, I was just at the main forums page https://www.ads-software.com/support/forums/
The log in link was in the top right hand corner of the page (on desktop).
I don’t know the user and looking at the profile we do not appear to have posted in any of the same topics or reviews etc. so I don’t see a link between us that could have caused this.
Anyway, when I logged in today it didn’t happen, everything was as normal. Hopefully this was nothing to worry about, I just thought I’d better flag it up because it was weird.
I don’t want to waste anyone’s time and I do appreciate you’re just doing your job in assuming I am mistaken!
That is the link that was there when I arrived at www.ads-software.com, I did not add that part of the code myself. All I did was click ‘log in’ and that was where I was sent.
(p.s. I’m sure you deal with many people who are unfamiliar with links and how websites work, but I am not one of them. It’s not polite to assume I am simply incorrect!)
@coloursb This thread may provide some ideas, it seems maybe you can edit the dashboard templates by adding files in to your theme
https://www.ads-software.com/support/topic/disable-email-field-on-profile-edit/
@thiagoff8 This may help, the list has a class of:
<ul class="wpuf_customs">
You could use the ‘:nth-child(n)’ selector to style each entry in the list, if you know the order that the entries will be and if they will be the same on each post.
https://www.w3schools.com/cssref/sel_nth-child.asp
So in your CSS you could add:
ul.wpuf_customs li:nth-child(1) { background: blue; color: white; } ul.wpuf_customs li:nth-child(2) { background: green; color: pink; }
Hope that helps. It would be a good feature if the dev’s could add individual classes to each custom field in the list.
- This reply was modified 4 years, 10 months ago by PinkishHue.
Forum: Plugins
In reply to: [All Import Export Suite for CSV and XML Datafeed] Sample CSV link error?Forum: Themes and Templates
In reply to: [Make] Make theme: unwanted horizontal scrollbarFor anyone else looking – the CSS provided in this guide has helped me to fix this issue:
Forum: Themes and Templates
In reply to: [Make] Make theme: unwanted horizontal scrollbarI noticed this too after the recent update, I hope the theme author’s see this post and fix whatever has caused it.
Thanks for highlighting what it was, you saved me lots of time and frustration!
Forum: Plugins
In reply to: [Buddy-bbPress Support Topic] Allow mark as resolved checkbox for replies.Any update on this? This’d be really useful. Thanks ??
This is a great workaround, thanks for sharing this!
I have edited the code as above and finding that the image is being set in the backend of WP but not showing on the front end…not sure why.
Will update if I figure it out.
Forum: Themes and Templates
In reply to: [Spacious] 1.3.4(.1) update breaks child theme headerTHANK YOU!
Ok, removed the plugin, turned ON the Friends feature in Buddypress settings, reinstalled the plugin and now the error is gone.
Will definitely give this plugin a go, thank you for sharing ??
If you want inspiration on a graceful way to handle this error, check out the Buddypress private message attachments plugin, it just has a nice admin message box that says the messages component is required and a link to the settings page to activate it:
https://www.ads-software.com/plugins/buddypress-message-attachment/
Hope that helps.
Forum: Plugins
In reply to: [RSS Feed Retriever] There is a big gap after the imageHi, I was able to fix this using CSS, I added this to my style.css:
.wp_rss_retriever_image { height: auto !important; }
I think I may have figured this out just using the details on the ‘basic usage’ page of the wiki, instead of ‘specific connections’ (I guess that’s more about if post id X is connected to post id Y instead of types of posts)
Basic usage: https://github.com/scribu/wp-posts-to-posts/wiki/Basic-usage
So here’s what I’ve used (seems obvious now I look at it!)
<?php $current_user = wp_get_current_user(); $user = $current_user->ID; // Find connected pages $connected = new WP_Query( array( 'connected_type' => 'users_to_posts', 'connected_items' => $user, 'suppress_filters' => false, 'nopaging' => true, ) ); // Display connected pages if ( $connected->have_posts() ) : echo "Here I echo my content (being the bbpress new topic form as per below!)"; bbp_get_template_part( 'form', 'topic' ); endif; ?>
I don’t know if a WP_Query is the best way to do this but it’s working for my needs.
Forum: Reviews
In reply to: [GEO my WP] Fantastically useful & quite versatile (if you code)It would be helpful is you ( or anyone else ) could make a note whenever you see an error and email me a list when you get a chance. I will fix it right away.
I had considered sending you notes on this before but didn’t want to annoy or offend you! Now that I know you are ok with it I will do that.
I must disagree with that. The plugin provides a function ( gmw_pt_update_location() that does all the process of geocoding and saving a location into GEO my WP databased. You only need to pass the address and post ID to the function.
That can be easily done to every post type using the action hook save_post_{post-type-name}.
I update the function’s docs with an example ( see the first example ).
Hopefully, that will be helpful and might as well bump the rating to 5 start ?? ( that’s obviously up to you ).You’re quite right, the functionality is there, but it can be hard (with beginner/intermediate WordPress coding skills!) to make it work, but for a more experienced coder probably very easy.
I am happy to up my star rating to a 5 because you’re very helpful and obviously want to make the plugin work well for everyone.
A future feature to consider might be to (somehow) allow the user to enable front end submission of the gmw data in an easier way (especially on bbpress posts where the users cannot edit their posts in the backend, only on the front end). Perhaps using a shortcode containing the GEOMYWP input field? And in a perfect world, enabling the field to be the same as when used on the backend, with the dropdown list to confirm the address.
Thanks again ??
Forum: Reviews
In reply to: [GEO my WP] Fantastically useful & quite versatile (if you code)Just to update, I’ve now been able to work out how to apply the front end post solution to bbpress topics based on the example code. I won’t go in to details here but basically it means using the ‘bbp_new_topic’ action instead of the WPUF action.