GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Mechbunny Babeshare Template for Wordpress (link and docs) (https://gfy.com/showthread.php?t=1118876)

fris 08-28-2013 06:53 AM

let me know if you run into any issues. also if you want to make changes, make a child theme that way on next update you wont lose any changes.

fris 08-28-2013 02:03 PM

here is the version with the automated updater in it, so you will get notified of new updates.

https://dl.dropboxusercontent.com/u/.../mechbunny.zip

madtwin 08-28-2013 02:27 PM

hey Fris, I have a problem with displaying category index thumbs - I'm using Taxonomy Images (by Michael Fields), images are assigned to the categories, but theme (channels.html) doesn't show them at all. :helpme

fris 08-28-2013 05:38 PM

Quote:

Originally Posted by madtwin (Post 19777221)
hey Fris, I have a problem with displaying category index thumbs - I'm using Taxonomy Images (by Michael Fields), images are assigned to the categories, but theme (channels.html) doesn't show them at all. :helpme

i have the category images enabled by default, it uses this as part of the theme, no plugins are required.

madtwin 08-28-2013 10:05 PM

Quote:

Originally Posted by fris (Post 19777453)
i have the category images enabled by default, it uses this as part of the theme, no plugins are required.

Ok, I get it. Problem fixed, thanks! :thumbsup

fris 08-30-2013 04:59 AM

Quote:

Originally Posted by madtwin (Post 19777687)
Ok, I get it. Problem fixed, thanks! :thumbsup

cool, let me know if you have any issues, the latest download has the updater built in so you will get notified of any updates.

if you plan on doing any changes to the templates, make a child theme so your changes wont be lost on the update.

ctggls 08-30-2013 09:04 AM

Really nice work Fris! Many many thanks!
Just a quick question though:

How can I make the photos link to attachment.php instead of lightbox or the media file?

Also how can I display the content that is written on single.php ? Right now I only have the images.

Thanks!!

fris 08-30-2013 09:18 AM

Quote:

Originally Posted by ctggls (Post 19779741)
Really nice work Fris! Many many thanks!
Just a quick question though:

How can I make the photos link to attachment.php instead of lightbox or the media file?

Also how can I display the content that is written on single.php ? Right now I only have the images.

Thanks!!

i will make these changes and reflect this in the options panel so if no lightbox is chosen, then the attachment will be used, once you see an update in your dashboard, update.

ctggls 08-30-2013 09:26 AM

Quote:

Originally Posted by fris (Post 19779760)
i will make these changes and reflect this in the options panel so if no lightbox is chosen, then the attachment will be used, once you see an update in your dashboard, update.

Thanks! I've tried displaying the text in the post but does not renders it ok. I'm just asking because many of my links to the sponsors are actual text-links and if they are not displayed it means 0 chances of getting sales.

But the theme overall is just great, with a wonderful design!

fris 08-30-2013 09:43 AM

Quote:

Originally Posted by ctggls (Post 19779770)
Thanks! I've tried displaying the text in the post but does not renders it ok. I'm just asking because many of my links to the sponsors are actual text-links and if they are not displayed it means 0 chances of getting sales.

But the theme overall is just great, with a wonderful design!

ya i will fix that, i mainly made the theme just for displaying images and videos with no extra content, so thats why that was never added.

ctggls 08-30-2013 09:48 AM

Quote:

Originally Posted by fris (Post 19779796)
ya i will fix that, i mainly made the theme just for displaying images and videos with no extra content, so thats why that was never added.

cool :) thanks!

ctggls 08-30-2013 11:21 AM

I've managed to show the full content (text included) and center it :)

just added <div class="posts3">
<?php the_content();?>
</div>

in the single.php and styled the css p for posts3 accordingly ... Don't know if it's the best way but it worked...:)

fris 08-30-2013 12:22 PM

Quote:

Originally Posted by ctggls (Post 19779962)
I've managed to show the full content (text included) and center it :)

just added <div class="posts3">
<?php the_content();?>
</div>

in the single.php and styled the css p for posts3 accordingly ... Don't know if it's the best way but it worked...:)

ya that will work.

ctggls 08-31-2013 01:12 PM

Solved with the attachment page also: don't know if it's the correct one:

functions.php

foreach ( $attachments as $id => $attachment ) {
$full_image = wp_get_attachment_url($id);
$thumbnail = wp_get_attachment_thumb_url($id);
$title = trim($attachment->post_excerpt) ? wptexturize($attachment->post_excerpt) : $attachment->post_title;
$attachment_page = get_attachment_link($id);

and then

if(gallery_option('galleryopt_lightbox_type') == "none") {
$output .= '<li><a href="'. $attachment_page .'"><img class="img" src="'. $thumbnail .'"></a></li>' . "\n";

It seem to work ok for now :)

fris 08-31-2013 01:47 PM

Quote:

Originally Posted by ctggls (Post 19781359)
Solved with the attachment page also: don't know if it's the correct one:

functions.php

foreach ( $attachments as $id => $attachment ) {
$full_image = wp_get_attachment_url($id);
$thumbnail = wp_get_attachment_thumb_url($id);
$title = trim($attachment->post_excerpt) ? wptexturize($attachment->post_excerpt) : $attachment->post_title;
$attachment_page = get_attachment_link($id);

and then

if(gallery_option('galleryopt_lightbox_type') == "none") {
$output .= '<li><a href="'. $attachment_page .'"><img class="img" src="'. $thumbnail .'"></a></li>' . "\n";

It seem to work ok for now :)

ya im gonna make the attachment urls look a bit better.

update will be out today.

ctggls 09-01-2013 11:59 PM

Quick question:

I've changed the dimension of the thumbs in my index.php and now instead of 7 columns I have 4 which is very good ( the thumbs are displayed as I wish). The only problem I have is that that the thumbs are floated left an no matter what I do, I can get them to center (something like margin: auto;) and there is a somehow wide black space on the right side.

Can you please help me and tell what do I need to do to center the images :) ?

The thumbs div is centered and the content also but just the li and img is not centered

1215 09-02-2013 11:59 AM

i use the wp app to do most updates and it supports adding single pics and then normal post, set post type to gallery, and adding multiple pics.

i noticed that most of my old updates only display the featured image, but none of the gallery pics.

what do you suggest?

fris 09-03-2013 02:53 PM

im working on the attachment page structure.

what ya think?

Quote:

// post url --> http://domain.com/2013/09/03/cute-dogs/
// attachment url 1 --> http://domain.com/media/281/cute-dogs/
// attachment url 2 --> http://domain.com/media/381/cute-dogs/
// attachment url 3 --> http://domain.com/media/461/cute-dogs/
// etc,etc

fris 09-03-2013 06:28 PM

when lightbox is off

gallery

http://dogpics.ca/new-age-music.html

attachment of image inside gallery

http://dogpics.ca/media/119/new-age-music.html

tfs 09-03-2013 06:34 PM

Quote:

Originally Posted by fris (Post 19766580)
bump for people who asked for it

I did not ask for it - but SHIT Fris, you keep coming through when the rest of this "forum" is nothing more than children bickering and prett well pointless.

I have close to 100 websites that I removed Wordpress from and deleted their databases, but you have tickled my curiosity bone. Again.

Thanks for being one of the few people left that actually try to get some work done - and share the results.

fris 09-05-2013 04:10 AM

Quote:

Originally Posted by tfs (Post 19785263)
I did not ask for it - but SHIT Fris, you keep coming through when the rest of this "forum" is nothing more than children bickering and prett well pointless.

I have close to 100 websites that I removed Wordpress from and deleted their databases, but you have tickled my curiosity bone. Again.

Thanks for being one of the few people left that actually try to get some work done - and share the results.

thanks, also looking to implement a few more features.

Avalana 09-05-2013 06:48 AM

pure awesomeness! Thanks for sharing!

We will give it a try on one of our test domains

fris 09-06-2013 09:11 AM

Quote:

Originally Posted by Avalana (Post 19787412)
pure awesomeness! Thanks for sharing!

We will give it a try on one of our test domains

no problem, new update will be out soon.

Manowar 09-06-2013 09:33 AM

Very nice, thanks fris :)

brassmonkey 09-08-2013 02:58 PM

Quote:

Originally Posted by fris (Post 19785256)
when lightbox is off

gallery

http://dogpics.ca/new-age-music.html

attachment of image inside gallery

http://dogpics.ca/media/119/new-age-music.html

:disgust im hooked on your dog site :( :1orglaugh :thumbsup

ctggls 09-09-2013 07:22 AM

Gallery page looks cool...

pornguy 09-09-2013 07:40 AM

Quote:

Originally Posted by fris (Post 19767322)
In the next update i will include an option to enable lightbox.

Any way to do lightbox with a banner under?

fris 09-09-2013 07:47 AM

Quote:

Originally Posted by pornguy (Post 19792278)
Any way to do lightbox with a banner under?

you want the actual banner in the lightbox? or a banner in the gallery?

fris 09-11-2013 10:06 AM

any other features you guys want before i push out an update?

madtwin 09-11-2013 12:13 PM

Quote:

Originally Posted by fris (Post 19795469)
any other features you guys want before i push out an update?

- photo submit form
- post ratings
- multiple color schemes


:pimp

fris 09-12-2013 02:19 AM

Quote:

Originally Posted by madtwin (Post 19795666)
- photo submit form
- post ratings
- multiple color schemes


:pimp

ill work on adding those 3 in.

:thumbsup

Cradle 09-13-2013 03:36 PM

been gone awhile and come back to pure awesomeness looks like ill actually get pudly online this weekend :D

globofun 09-13-2013 05:27 PM

Any chance the theme could be responsive?

fris 09-14-2013 05:20 PM

Quote:

Originally Posted by globofun (Post 19799092)
Any chance the theme could be responsive?

on the next version that will be the key.

The Duck 09-15-2013 05:42 AM

Fris buddy do you have more wp themes available?

ctggls 09-15-2013 10:07 AM

I forgot to mention, it would be nice if there was the possibility to add a sidebar on the right side, at least on the index page :) . Thanks!

fris 09-15-2013 01:09 PM

Quote:

Originally Posted by ctggls (Post 19800497)
I forgot to mention, it would be nice if there was the possibility to add a sidebar on the right side, at least on the index page :) . Thanks!

ya i will be rebooting shortly with a new design.

ctggls 09-16-2013 01:39 AM

Quote:

Originally Posted by fris (Post 19800598)
ya i will be rebooting shortly with a new design.

cool, this theme really brought down my bounce rate to around 35% from 45% even though before I was using a similar TGP-look-like theme.

fris 09-16-2013 05:57 AM

Quote:

Originally Posted by ctggls (Post 19800965)
cool, this theme really brought down my bounce rate to around 35% from 45% even though before I was using a similar TGP-look-like theme.

the thumbs around the gallery content is what helps with that, the clickthrus go up.

:thumbsup

RevSand 09-26-2013 04:10 AM

Just starting to play w/ this.. Is the most current version 1.1?


All times are GMT -7. The time now is 09:44 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123