Robin
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Full size link issuei hate to say this its a standard file but i cant see any other solution at the moment,
backup your page (loop-attachment.php) (wp-content/themes/twentyten/)
and around like 50 this function is written either you can remove it all together (so it wont display size and pixels
or you can just remove the anchor tagForum: Developing with WordPress
In reply to: Full size link issueok so this is code
if ( wp_attachment_is_image() ) { echo ' <span class="meta-sep">|</span> '; $metadata = wp_get_attachment_metadata(); printf( __( 'Full size is %s pixels', 'twentyten' ), sprintf( '<a href="%1$s" title="%2$s">%3$s × %4$s</a>', wp_get_attachment_url(), esc_attr( __( 'Link to full-size image', 'twentyten' ) ), $metadata['width'], $metadata['height'] ) ); }which is generating that link in file loop-attachment.php
Forum: Developing with WordPress
In reply to: Full size link issueI am just trying to see which plugin is generating that full size image link as i dont think by default twentyten has that feature havnt installed twentyten in ages
Forum: Developing with WordPress
In reply to: Full size link issuewhat shopping cart plugin are you using
Forum: Networking WordPress
In reply to: Multisite user registration confusion, please helpOk one of the quick work around i can see is
using a gravityform addon user- registration (as it syncs with your wp-user-profileso instead of giving the default register you let this form be opened up,
and the fields filled r synced in wordpress user area and they are synced in buddypress ( there is a setting to activate it) and u can add more fields to your wordpress user profile fields to match what ever you want more info from your your when filling registration form so all 3 forms which will be syncing have same fields
I hope i am making sense 🙂This is just a theory though but i think this can work worth giving a try
Forum: Developing with WordPress
In reply to: Full size link issueah ok now i see it 🙂
so u want that full size image link to not show ? right ?Forum: Fixing WordPress
In reply to: How to change font and font size from the post.🙂
Forum: Localhost Installs
In reply to: I want my old domain name to point to my WordPress.org siteand since you have purchased domain from wordpress.com and you just want to point your wordpress.com (Blog) to your domain purchased you could do that from your settings > domains and selecting your domain to make it primary
you would only change DNS recrods of your domain to wordpress ones if you had bought the domain from some other hosting agency.
But u cannot point your domain to your localhost
Forum: Localhost Installs
In reply to: I want my old domain name to point to my WordPress.org siteah, you are trying to map your local machine to a domain name ?
if i understand it right?Forum: Networking WordPress
In reply to: Multisite user registration confusion, please helpah it changed to a link 🙁 it was a href=”SITE_URL”
Dear USERNAME,
You can log in to the administrator account with the following information:
Username: USERNAME
Password: PASSWORD
Login Here: BLOG_URLwp-login.php
Thanks!–The Team @ SITE_NAME
Forum: Networking WordPress
In reply to: Multisite user registration confusion, please helpSettings > network settings >
Message to use
Welcome to the Put what ever you like here .Forum: Developing with WordPress
In reply to: Full size link issuecan u post the link of exact page
as i went to your site and tried right clicking images and all seem to work fine and does not allow me to right clickForum: Themes and Templates
In reply to: How do I do get this effect?Jan, Aga already mentioned that
Yes, I’ve a child theme set up, with a custom stylesheet waiting for adapting. I’m adapting
Forum: Plugins
In reply to: [WP Customer Reviews] [Plugin: WP Customer Reviews] Logged in Users Onlyyou can use advance custom fields (ACF)
Forum: Plugins
In reply to: [WP Customer Reviews] [Plugin: WP Customer Reviews] Logged in Users Onlyyou could do a conditional logic on this in your functions file
<?php if ( is_user_logged_in() ) { echo ' <style> </style>'; } else { echo ' <style> #whatever-the-plugin-id{ display:none; } </style>' ; } ?>I know this is not the cool way and there could be other options as well, but its a quick solution