Keyword

TIP: Add videos to VirtueMart products - with the help of the AllVideos Plugin!

  • Erik Neff
  • Erik Neff's Avatar
  • Offline
  • New Member
  • Personal text is rarely text and never personal.
More
17 years 10 months ago #137 by Erik Neff
might not have to do with versions - this might have something to do with it...

forum.joomlaworks.net/index.php?topic=78.msg628#msg628

Insert signature here.

Please Log in or Create an account to join the conversation.

More
17 years 10 months ago #138 by dax702
The videos display fine on the details page after altering the code as seen here:
forum.joomlaworks.net/index.php?topic=35.0
However, when I go to a product category page in VM, it just shows the mambot tags, no actual video.

Please Log in or Create an account to join the conversation.

  • Erik Neff
  • Erik Neff's Avatar
  • Offline
  • New Member
  • Personal text is rarely text and never personal.
More
17 years 10 months ago #139 by Erik Neff
and what of the youtube-specific mod mentioned by fotis in my last post?  Have you tried linking to other video sites to see if they work?  FYI: the video I have on my category page is an internally-hosted video.

Insert signature here.

Please Log in or Create an account to join the conversation.

More
17 years 10 months ago #140 by dax702
I don't know what youtube-specific mod mentioned by Fotis in which post you're talking about? Do you have a link to it please?

Please Log in or Create an account to join the conversation.

More
17 years 10 months ago #141 by djspade
On the missing folder... it must have been my ftp client acting funny, because it's there now  ??? ... I still have a couple of bugs to work out. I'll keep y'all posted.

www.h3omusic.com/i_am_h3o ... the site in question.

Please Log in or Create an account to join the conversation.

More
17 years 8 months ago #142 by gmcdrive
I'm not sure if everyone else here already has the answer for the often posted question "can you use allvideos in main and sub categories in virtuemart"
honestly , I did quite a bit of searching , and came up with a great response regarding how to add all of your plugins to VM category pages :
In your "shop.browse.php" file

Near the top of the file, look for this line (19):
mm_showMyFileName( __FILE__ );

and then add this directly after :
      global $_MAMBOTS;
      $_MAMBOTS->loadBotGroup( 'content' );
      $plug_row = new stdClass();
      $plug_params = new mosParameters('');

Then , again in the same file around line 83 take these lines :
      echo '<div style="width:100%;float:left;">';
      echo $desc;
and split them in two adding this :
        $plug_row->text = $desc;
        $_MAMBOTS->trigger( 'onPrepareContent', array( &$plug_row, &$plug_params ), true );
        $desc = $plug_row->text;

so that segment looks like this :
        echo '<div style="width:100%;float:left;">';
        $plug_row->text = $desc;
        $_MAMBOTS->trigger( 'onPrepareContent', array( &$plug_row, &$plug_params ), true );
        $desc = $plug_row->text;
        echo $desc;

And finally , to make it so you can load videos , tabs , slides ... whatever in your short descriptions. (untested for me as of yet, but videos work 100% on category pages, and I will update if i find any issues) find line 476 which looks like this :
echo $product_cell;

and Add this directly before it:
      $plug_row->text = $product_cell;
      $_MAMBOTS->trigger( 'onPrepareContent', array( &$plug_row, &$plug_params ), true );
      $product_cell = $plug_row->text;

well , That should do it ... Awesome plugins like AllVideos is what makes the opensource universe such a strong community , and although I would love to claim this as my own , i have to give credit to another great site :
www.plainlycode.com Where I found this great way to get videos right where I needed them!

Please Log in or Create an account to join the conversation.

More
17 years 8 months ago #143 by dbzeroone
This fix works like a CHARM!!!!!!!!!!!!!!!!! THANKS FOR POSTING GMCDRIVE!!!
You are officially my hero!! At least for today :D

Please Log in or Create an account to join the conversation.

More
17 years 7 months ago #144 by gmcdrive
I may not be the worlds greatest php coder, but im one hell of a researcher and am always ready to help !

GmC

Please Log in or Create an account to join the conversation.

More
17 years 7 months ago #145 by tomaerts
I want to implement SIG into another component.
I think I've found where to place the hack, but i don't know how to modify it soo it works.

The component shows the info like this:
<?php echo $row->description;?>

When i copy the hack above this line like this:
<?php
// start - enable "content type" plugin parsing
global $_MAMBOTS;
$_MAMBOTS->loadBotGroup( 'content' );
$row->description = $template;
$results = $_MAMBOTS->trigger( 'onPrepareContent', array( &$row, &$params, $page ), true );
$template = $row->description;
// end - enable "content type" plugin parsing
?>
<?php echo $row->description;?>

It doesn't show anything. Can anybody help me?

Please Log in or Create an account to join the conversation.

More
17 years 5 months ago #146 by Chr1s
Replied by Chr1s on topic Currency doesnt work anymore
Hi all,

I implemented the lines mentioned by Fotis.
Works like charm!

BUT:
Now my Currncy doenst work anmyore. Where there was "€" before, no there's only "&euro;". What could be the problem?

thanks for your help!

Chr1s

Please Log in or Create an account to join the conversation.

  • JoomlaWorks
  • JoomlaWorks's Avatar Topic Author
  • Offline
  • Admin
More
17 years 5 months ago #147 by JoomlaWorks
Change the currency in the VM configuration page. Add the euro html entity.

Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

More
17 years 5 months ago #148 by Chr1s
Works! THX!
I added € as entity.

Just because I'm eager to learn:
Why didn't the &euro; entity work afte I applied the VM-Product-Details-Fix?

Cheers from Germany

Chr1s

Please Log in or Create an account to join the conversation.

More
17 years 5 months ago #149 by BCK
Hello evryone, I'm having an issue with getting this to go. I've installed the allvideo mabot... I've applied the quick hack to the product_details.php, I've read the directions... but still not sure what I'm doing wrong. I want to have youtube vids in some of my product listings... right there on the details for the item. It's my understanding that all I need to do is simply type in the code {youtube}video_ID{/youtube}. I'm typing this in to the description using the WYSIWYG editor. BUT... all I get is {youtube}video_ID{/youtube} showing in the product description.

I also had the same issue with the folder... There was no folder created in images/stories/... So I went into the Media Manager via Joomla home menu and I created that folder myself so the path is images/stories/videos. I was under the impression that this folder would by be created when I installed the mambot. Hope I did the right thing.

Long story short... Am I supposed to put the Tags for the Youtube vid into the listing with the "insert/embed"or maybe the ""insert Flash" function on the WYSIWYG editor or something like that. I'm really a bit confused with how to get this working even though I have read the usage directions for this. Many thanks in advance for any help. Thanks

Please Log in or Create an account to join the conversation.

More
17 years 5 months ago #150 by BCK
Hello again, OK, I must have done the right thing.... Don't know why it wasn't working previously BUT now.... The Video is SHOWING! Whoaaa!!! THIS IS ABSOLUTELY AMAZING!!!! Many, many thanks for creating this AWESOME content enriching tool!  ;D You are incredible and you do enlightening work. I honestly cannot thank you enough for this powerful contribution to content enhancement that you have given to us all! You ROCK Bro!

Please Log in or Create an account to join the conversation.

More
17 years 5 months ago #151 by Airbrush
Having a problem with the AllVideos Ext. running in the product description.

It seems to duplicate the video files, the order button and pushes everything on the page down. I checked to see if there was any other HTML code in the description window and nothing else exist.  Any ideas?

airbrushaction.com/dev/index.php?page=shop.product_details&flypage=shop.flypage&product_id=204&category_id=20&manufacturer_id=0&option=com_virtuemart&Itemid=1

Please Log in or Create an account to join the conversation.

More
17 years 4 months ago #152 by dropshipdvd
Replied by dropshipdvd on topic Tiffany-wholesaler
Tiffany wholesaler www.hw925shop.com is a professional Tiffany jewelry supplier for 3 years and won the good reputation on this line. The products of us are the best quality in china and the lowest price(not cheap bootleg), including the necklace ,cuff , ring ,earring . as 1837 style , round / heart tag style , Atlas style , Titanium style and so on . Pleasure more EBAY resellers join our company and enjoy our service. Since we are mate wholesaler and dropshipping servicer who can help you feel confidence to set up a steady business.To be exactly, you may have all kinds of questions from beginning If you're looking for a good source of wholesale Tiffany for your retail operation, online store or auction business, www.hw925shop.com is your one-stop shop for wholesale .hope you will get more surprise items on our website .
Wecome to our website: www.hw925shop.com
Email: This email address is being protected from spambots. You need JavaScript enabled to view it.
MSN: This email address is being protected from spambots. You need JavaScript enabled to view it.

Please Log in or Create an account to join the conversation.

More
17 years 2 months ago - 17 years 2 months ago #153 by jazzstage
Here is a complete article on how to get Allvideo working in the Category, short description, and Product details.  Works great.

www.plainlycode.com/virtuemart/joomla-plugins-in-virtuemart.html

Please Log in or Create an account to join the conversation.

More
17 years 1 month ago - 17 years 1 month ago #154 by Arild Toft
...at www.plainlycode.com/Joomla/Joomla-Plugins-in-VirtueMart.html
the following is described:
"Now just call the plugin from your product description (the long description) in VirtueMart."

Anyone who could explain for me what you do in detail to get this working - how to call the plugin? I tried to insert {tab=Description} but I did not bet a additional tab next to my "more images"

The site I am trying to implement on has the following address


It would be great if anyone could assist me

Please Log in or Create an account to join the conversation.

More
16 years 10 months ago #155 by active8
or see this thread if you want to have videos in Joomla 1.5 and Virtuemart 1.1 :)

--> forum.joomlaworks.net/index.php?topic=4056.msg17685#msg17685

Please Log in or Create an account to join the conversation.

More
16 years 10 months ago - 16 years 10 months ago #156 by blacksun
Hello,

I'm running Joomla 1.5 and Virtuemart 1.1.0 and I want to get video in my product pages using Allvideos Reloaded. 

{EDIT}

I've replaced my original text with the solution, so others can find it.
It was brought to my attention that no hack is required in Virtuemart 1.1.0.
Adding plugin functionality in product descriptions is an included admin option.
DUH.

1- So, first login to your virtuemart component.

2- Select admin --> Configuration and then select the "Global" tab.

3- Under "Frontend Features" there is a section "Enable content mambots / plugins in descriptions?"
Check that box.

4- Click "apply".

That's it.
Took me 2 days and lots of head scratching to find that check box.  :-[
lol, at least it works.

Please Log in or Create an account to join the conversation.


Powered by Kunena Forum