iadagraca
Forum Replies Created
-
Forum: Hacks
In reply to: I need to remove the attachment page menu item for gallerieshttps://wordpress.stackexchange.com/questions/135232/redirect-attachment-page-to-attachment
I found a solution, i’m sure a lot of people have this issue and i found a page with the code before i tried tackling it myself XD
Simply place this is on function.php
function wpa_attachment_redirect(){ if( is_attachment() ){ $urlArr = wp_get_attachment_image_src($_GET['attachment_id'], 'full'); if(empty($urlArr)) $url = wp_get_attachment_url($_GET['attachment_id']); else $url = $urlArr[0]; wp_redirect($url, 301); exit; } }
Basically regardless of if attachment pages is selected it always redirects to the image. Even works with lightbox plugins and such. Its as if attachment pages don’t exist at all <3
Forum: Hacks
In reply to: I need to remove the attachment page menu item for galleriesThank you for replying!
Hmmm they both sound like good ideas, i’m not sure how to do the jQuery option but i think i know how to do the second one.
Part of my concern is social network auto posting to sites like tumblr. Hopefully the second option will work for that just fine.
That said could you explain the jQuery method in more detail?
Forum: Plugins
In reply to: [Project Manager by TPC] Messages is not workingGreat, i really like this plugin and we’ll be using it a lot over the coming months.
I’ll keep posting any issues i encounter!
Forum: Plugins
In reply to: [Project Manager by TPC] Messages is not workinghttps://i59.tinypic.com/hv5cvk.jpg
https://i61.tinypic.com/207t7r8.jpg
here are two images showing the problem with the “New project” box. Simply expanding the description box is enough.
and i mean quick edit for projects.
Forum: Plugins
In reply to: [Project Manager by TPC] Messages is not workingIt would also appear quick edit does not work.
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] The new update is brokenhow do you reinstall an update? i had this same issue.
EDIT: NVM, i assumed the data for the auto posting might get over written but simply overwriting the data on the file is enough.
Forum: Plugins
In reply to: [Theme My Login] *IMPORTANT* Theme My Login 6.4-alphaWhere do i download 6.1.4?
EDIT: found for anyone who needs it.
https://www.jfarthing.com/blog/2011/06/28/theme-my-login-6-1-4/
Forum: Plugins
In reply to: [Theme My Login] Only admins can see User linksi thought that was the case but every role has the same settings, would it effect it that much?
i’ll check on my dummy user and see if thats the case…
i’ve also noticed the same issue on our facebook page
https://www.facebook.com/Takuchat
our site is
I would like it to simply show the featured image…
Forum: Fixing WordPress
In reply to: Images in whole site are brokenCould be a plugin causing it…
i’ve had various effects from diffrent plugins and settings.
Change your default image folder and such, could be a range of things.
Forum: Fixing WordPress
In reply to: Newbie questionsMost of your questions can be edited in CSS. Find your “Style.css” in the editor.
i’d recommended trying out Firefox’s wev developer tools to find out what CSS values you need to edit. the 3D view can be REALLY helpful.
Forum: Fixing WordPress
In reply to: What is this on my pagelink it.
Forum: Fixing WordPress
In reply to: Don't want new posts to open at top of websiteTry lightbox or various popular jquery plugins.
Forum: Fixing WordPress
In reply to: URL to WordPress Blog – I don't get itMore than likely the issue is where your wordpres installation is installed.
If its under your domain folder when viewing it through FTP then then you’re good.
if not then your domain isn’t set-up right.
But this isn’t a wordpress issue its more like a domain to host issue. changing hosts can be difficult and often you won’t see the results you’re looking for for a few hours to a day.
Forum: Fixing WordPress
In reply to: Can't acess user profiles pageThis is a really big issue for me, does anyone have any ideas?
pointing me in the right direction would be great.