Martin Robbins
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Custom post pagination insideSeems you are attempting to have the “effect” of paging only within the sidebar? While the rest of the category display remains the same? Is that right?
If so, I don’t think it can be done quite that way. We probably need to see the entire category.php to figure it out. If it’s a really long file you could put it on pastebin.com and post the link here
Forum: Fixing WordPress
In reply to: How to add filter to content from share-buttonsDo you suppose it has anything to do with the fact that most share buttons are iframes?
Also xlanguage hasn’t been updated in over two years, perhaps you should look at polylang ?
Forum: Fixing WordPress
In reply to: delete_user_form passing logged in user, not user to be deletedFrom the reference:
Browse: Home / Reference / Hooks / delete_user_form
do_action ( ‘delete_user_form’, WP_User $current_user )
Fires at the end of the delete users form prior to the confirm button.
Parameters:
$current_user(WP_User) WP_User object for the user being deleted.
You wrote:
that hook is supposed to pass the ‘WP_User object for the user being deleted’,
$current_user is a parameter. Doesn’t that mean you have to pass it in? And by not explicitly passing it in, it defaults to the currently logged in user ?
In other words, unless you specify, how does it know which user to delete?
Forum: Fixing WordPress
In reply to: Customizer and preview don't workI have loaded wordpress again, deleted cache, loaded wordpress again in Hostgator, but nothing works.
How exactly did you load WordPress?
When I go to the customize page
What is the address of your customise page?
Can you login at http://regalaunmomento.com/wp-admin/ ?
Does this page look familiar : http://regalaunmomento.com/wordpress/ ?
Forum: Fixing WordPress
In reply to: Need Help Creating Custom Form/Plugin ProcessYour constraints seem so specific, I think it will have to be custom.
Gravity Forms is a reasonably priced premium forms plugin, powerful and flexible enough, with some study and perseverance you could make it happen exactly as you want.
Forum: Fixing WordPress
In reply to: htaccess redirect with multisitehttp://www.example.com -> example.com
This part I would do in dns. Exactly how depends on what already is there.
example.com -> example.com/es/
In later versions of WordPress Multisite I believe this part you can do by setting /es/ to be the main site.
Another option: Don’t even use multisite or wpmu and instead use plugin polylang for multiple language translations of a single site.
Forum: Fixing WordPress
In reply to: mappen makenI’ve created a page for photo’s called photo album
Now I want to make there several folders with photos, it’s displayed as a slide show at the big
how I’m going to do this
Thanks for the answerhttp://nl.forums.wordpress.org/
Forum: Fixing WordPress
In reply to: Notify link targetI think that has to be controlled from their end. They only accept notifications they want. In general if they are interested, they will already know where the visit came from without the referring site having to do anything extra.
Forum: Fixing WordPress
In reply to: Не отправляются комментарииAfter the upgrade, stop sending comments and smiles from the full size decreased to 14X14. Earlier updated to version 4.2, it had the same problem, had to backtrack.
What is the problem, how can I fix it?
Blog: liter-rm.ruForum: Fixing WordPress
In reply to: Login Form for visitorsFor this kind of functionality, I use Justin Tadlock’s Members plugin https://wordpress.org/plugins/members/ … His members plugin is the bare minimum essentials and no-fluff. Everything he writes is top-notch. There might be other options that are less flexible yet more simple for someone who doesn’t understand WordPress coding concepts well enough.
Forum: Fixing WordPress
In reply to: entering codeYou are welcome, please mark this topic resolved?
And maybe also this one as it’s sort of a duplicate? : https://wordpress.org/support/topic/reduced-sharpness-of-images?replies=2
Forum: Installing WordPress
In reply to: 2 wordpress installations not working on godaddyWhat can you tell us about http://www.thearsenalhistory.com/ ?
Is that your dad’s site?
What I have is 2 installations of wordpress on one godaddy hosting
I had a look in the wp-config, I can’t see anything that would be causing an issue.
If there’s two WordPresses there should be two wp-config.php files to consider. Seems to me you have installed the second WordPress “inside” the first one, as opposed to somehow properly “alongside”.
One of the moderators can delete this post if they want as the issue hasn’t been resolved
If you’re done with the topic, you the original poster should mark it resolved.
Forum: Fixing WordPress
In reply to: entering code@kentannenbaum You might have better results if you mark this topic “entering code” as resolved, since we have discussed where to enter the code. Then create perhaps a new topic with more specific title like “need code to improve jpeg quality” … Good Luck
Forum: Fixing WordPress
In reply to: My Gravatar not appearing on my blogOk, I think I see what’s going on
I cannot change my e-mail address in Users>Your Profile? Every time I change it to the address that is on Gravatar…
Is there another user account on your blog using the desired gravatar email? If so, try delete second user or change its email to other/dummy. I believe that would free up the email address and make it available to be assigned to your first account.
Forum: Hacks
In reply to: Onclick when selecting a category in post admin UIcustom taxonomy is not attached to a post type, but to certain categories.
I didn’t know that could be done. Thanks for teaching me something.
So I have to wait until a post is saved (or I click on the selected category) to have the custom tax box displayed.
Have you tried adding an action to action-hook? :
post_submitbox_misc_actions
Runs when an editing page gets generated to add some content (eg. fields) to the submit box (where the publish button is shown). No function arguments.