Go Back   vb.org Archive > Search Forums
FAQ Community Calendar Today's Posts Search

Showing results 1 to 25 of 42
Search took 0.00 seconds.
Search: Posts Made By: DetroitYES
Forum: vB4 Programming Discussions 10-29-2012, 07:18 PM
Replies: 1
Views: 399
Posted By DetroitYES
Looking for best way to append something to a users signature + publish to facebook

I want to build a vacation count down calendar that will display how many days remain until a user leaves. I'm confident in building the back end but not sure how to append it to the signature...
...
Forum: vB4 Programming Discussions 10-24-2012, 09:04 PM
Replies: 5
Views: 1,183
Posted By DetroitYES
I don't utilize the CMS on any of my sites due to...

I don't utilize the CMS on any of my sites due to its poor SEO, but I'm interested to see whether this is addressed in vb5.

If not, I've done some work to create a get_attachments() function...
Forum: vB4 Programming Discussions 10-24-2012, 06:13 PM
Replies: 3
Views: 837
Posted By DetroitYES
Son of a gun. I swear on my life, this crossed my...

Son of a gun. I swear on my life, this crossed my mind right before I hit the submit button on the thread, so I went and tried it to no avail.

Low and behold I just re-applied the change and it...
Forum: vB4 Programming Discussions 10-24-2012, 04:33 PM
Replies: 3
Views: 837
Posted By DetroitYES
$vbulletin->options not available at global_bootstrap_complete unless via include?!

So I've noticed this hiccup while developing a few products and thought I'd get some clarification on it here. Basically, if I write a plugin for my atdisg product with this code at...
Forum: vB4 Programming Discussions 10-16-2012, 09:35 PM
Replies: 2
Views: 851
Posted By DetroitYES
Okay here is what I ended up with: hooked at...

Okay here is what I ended up with:

hooked at global_state_check, this will pull from the blog text and feed it into the meta description/ og:description



if ($vbulletin->GPC['blogid'] AND...
Forum: vB4 Programming Discussions 09-25-2012, 06:52 PM
Replies: 2
Views: 851
Posted By DetroitYES
Modifying auto generated Blog <title> and og:description tags

I have a blog setup for a client, and they would like both the Forum name and Username removed from the Blog entry's title and facebook meta tags for SEO purposes.

This seems like something I...
Forum: vBulletin 4.x Add-ons 08-22-2012, 05:25 PM
Replies: 142
Miscellaneous Hacks - Restrict Style to Usergroup
Views: 43,740
Posted By DetroitYES
Hi Andres, check your inbox, I did some work on...

Hi Andres, check your inbox, I did some work on this to make it a little more robust, did not want to post the xml here...
Forum: vBulletin 4.x Add-ons 08-20-2012, 04:19 PM
Replies: 142
Miscellaneous Hacks - Restrict Style to Usergroup
Views: 43,740
Posted By DetroitYES
I like it so far! Will rate once I see how well...

I like it so far! Will rate once I see how well it behaves with parent/child style situations, specifically with the Blog's style override option (and another in house product we use that also makes...
Forum: vB4 Programming Discussions 08-03-2012, 06:18 PM
Replies: 8
Views: 1,417
Posted By DetroitYES
Alternatively, he could remove the item from the...

Alternatively, he could remove the item from the array with unset() once it was used but this is probably easier if he isn't code savvy...
Forum: vB4 Programming Discussions 08-03-2012, 06:12 PM
Replies: 2
Views: 957
Posted By DetroitYES
holy cow, thanks a ton I hope the client...

holy cow, thanks a ton

I hope the client paid you sufficiently for digging all that out!
Forum: vB4 Programming Discussions 08-02-2012, 03:24 PM
Replies: 2
Views: 957
Posted By DetroitYES
Vbulletin Settings: How to utilize Check boxes in option code?

I'm building a product that will append various buttons to the footer area of posts in threads, and blog entries... this may later extend to cms articles and other vbulletin content types...

In...
Forum: vB4 Programming Discussions 08-01-2012, 04:00 PM
Replies: 2
Views: 571
Posted By DetroitYES
Glad to help, and yes, it was due to the...

Glad to help, and yes, it was due to the datastore which save_settings() updates along with the actual database column...
Forum: vB4 Programming Discussions 07-27-2012, 04:52 PM
Replies: 4
Views: 805
Posted By DetroitYES
As others have said, absolutely get your html and...

As others have said, absolutely get your html and css down before diving into php. It will also help to get a grasp on javascript, nothing too in depth, but just an idea. I would also avoid jumping...
Forum: vB4 Programming Discussions 07-27-2012, 04:01 PM
Replies: 2
Views: 571
Posted By DetroitYES
Update options outside of the settings menu?

I found this thread:

https://vborg.vbsupport.ru/showthread.php?t=157223

Which lead me to develop this code in my admincp for the product:


//...
$db->query_first("UPDATE " . TABLE_PREFIX ....
Forum: vB4 Programming Discussions 06-07-2012, 04:49 PM
Replies: 7
Views: 1,428
Posted By DetroitYES
That did it, all is well, thanks a lot everyone.

That did it, all is well, thanks a lot everyone.
Forum: vB4 Programming Discussions 06-07-2012, 04:23 PM
Replies: 7
Views: 1,428
Posted By DetroitYES
One more minor thing, changing to...

One more minor thing, changing to global_bootstrap_init_start seems to have removed the titles 'Quick Style Chooser', 'Standard Styles', and 'Mobile Styles' from my quick style chooser? Am I causing...
Forum: vB4 Programming Discussions 06-07-2012, 04:03 PM
Replies: 7
Views: 1,428
Posted By DetroitYES
I think this points more towards the root of the...

I think this points more towards the root of the problem. If i change the borken plugin to fire on parse_templates, the product will then fail to work on boards that don't utilize...
Forum: vB4 Programming Discussions 06-06-2012, 05:59 PM
Replies: 7
Views: 1,428
Posted By DetroitYES
Plugin conflict: template hooks break when I use $templater = vB_Template::create();

I'm having a strange error where calling $templater = vB_Template::create(); in a plugin causes other plugins that utilize template hooks to break.

here is the plugin that calls $templater =...
Forum: vB4 Programming Discussions 06-01-2012, 07:11 PM
Replies: 6
Views: 1,079
Posted By DetroitYES
oh, man good point...

oh, man good point...
Forum: vB4 Programming Discussions 06-01-2012, 04:55 PM
Replies: 6
Views: 1,079
Posted By DetroitYES
Thank you, that is what I assumed but wanted to...

Thank you, that is what I assumed but wanted to confirm.
Forum: vB4 Programming Discussions 06-01-2012, 04:09 PM
Replies: 6
Views: 1,079
Posted By DetroitYES
Using the same $vbulletin->options across multiple products

So, I have two products, each of which offer to make a call to bit.ly to shorten a url before tweeting to a twitter account.

For me, it would be most sensible if I could utilize the same vbulletin...
Forum: vB4 Programming Discussions 05-17-2012, 03:03 PM
Replies: 0
Views: 342
Posted By DetroitYES
Creating an update for a custom product...

I've got a custom product I've developed, and part of the install code makes a MySQL Procedure and some tables. Naturally, the uninstall code drops all of these additions.

However, I've reached a...
Forum: vB4 Programming Discussions 04-02-2012, 05:11 PM
Replies: 3
Views: 2,948
Posted By DetroitYES
Altrenatley, you could target it with css and set...

Altrenatley, you could target it with css and set it to display:none;

If you have not customized the navbar template in any other way this will make updating easier because vbulletin won't see the...
Forum: vB4 Programming Discussions 04-02-2012, 05:02 PM
Replies: 0
Views: 621
Posted By DetroitYES
How does the blog product implement custom skins?

Okay, this was mind numbingly simple in the long run.

It involves making a plugin, and making a vb option, both of which can be achieved in debug mode and exported into the XML:

for the blog,...
Forum: vB4 Programming Discussions 03-29-2012, 05:57 PM
Replies: 2
Views: 444
Posted By DetroitYES
I'm not sure i did this correctly, will this...

I'm not sure i did this correctly, will this allow me to make a template with the same name in the mobile skin?

The main template I use is ATDASD, I have that functioning and it installs correclty...
Showing results 1 to 25 of 42

 
Forum Jump

All times are GMT. The time now is 01:51 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02008 seconds
  • Memory Usage 2,052KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)footer
  • (1)forumjump
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (2)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)search_results
  • (25)search_results_postbit
  • (1)spacer_close
  • (1)spacer_open
  • (6)threadbit_pagelink 

Phrase Groups Available:
  • global
  • inlinemod
  • prefix
  • search
Included Files:
  • ./search.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_search.php
  • ./includes/functions_databuild.php
  • ./includes/functions_forumlist.php
  • ./includes/functions_misc.php
  • ./includes/functions_forumdisplay.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • search_before_process
  • search_start
  • search_results_start
  • search_results_query_posts
  • search_results_prebits
  • threadbit_process
  • search_results_postbit
  • pagenav_page
  • pagenav_complete
  • forumjump
  • search_complete
  • navbits
  • navbits_complete