Forum Replies Created

Viewing 15 replies - 16 through 30 (of 93 total)
  • Plugin Author Relevad

    (@relevad)

    Hi Redline. At the moment, there is no way to set the background color to be transparent using the color picker. If you wanted to set it as such, you could insert custom CSS into the advanced styling box at the bottom.

    The CSS you would use is:

    background-color: transparent !important;

    This line will modify the background color of the ticker to be transparent.

    If you were looking to put this CSS in another place on your website that accepts CSS style rules instead of the advanced styling box, the correct line would be:

    .stock_ticker {background-color: transparent !important;}

    Let me know if this doesn’t work for you and I’ll take a second look.

    Plugin Author Relevad

    (@relevad)

    Hi Nyka, I’m not sure I understand your question.

    If you wanted to add in the stocks listed on gsestockfeed.com, you could copy and paste each of the ticker symbols into a list and then paste it into the config area. Here is the list from gsestockfeed.com:

    AADS, ACI, AGA, ALW, AYRTN, BOPP, CAL, CLYD, CMLT, CPC, EGH, EGL, ETI, FML, GCB, GGBL, GGBLRT, GLD, GOIL, GOILRT, GSR, GWEB, HFC, HORDS, IIL, MAC, MACRE, MLC, MMH, PBC, PKL, PZC, SAMBA, SCB, SCBPREF, SIC, SOGEGH, SPL, SWL, TBL, TLW, TOTAL, TRANSOL, UNIL, UTB

    If gsestockfeed.com changes, you will have to update your stock list manually on our plugin.

    Plugin Author Relevad

    (@relevad)

    Sorry for the long delay in response, I took a vacation and forgot to hand off this responsibility to anyone else.

    I just checked the stock ticker, and NXEO works for me. Has this situation been resolved? I believe it was just a delay in update of our symbol table.

    Plugin Author Relevad

    (@relevad)

    Sorry for the long delay in response, I took a vacation and forgot to hand off this responsibility to anyone else.

    I just checked the stock ticker, and TRON works for me. Has this situation been resolved?

    Thread Starter Relevad

    (@relevad)

    Hi, I was looking to update to the latest version of the plugin but I wanted to check whether the wp_trim_excerpt() issue highlighted above has been resolved.
    Thanks
    — Relevad Corporation

    Plugin Author Relevad

    (@relevad)

    Hi Palemo.

    This is an issue with our data source. It provides a maximum of 3 decimals of precision on the stock price, but very often only gives 2 digits of precision. I was never able to find a way to force it to give 3 digits, if that is possible. I concluded it is arbitrary, which is unfortunate. Sorry about that.

    Here is a screenshot to demonstrate: https://imgur.com/OoxJ61o

    If I ever find a way to fix this in the future I will definitely come back and release a new version to address this highly requested issue.

    Forum: Plugins
    In reply to: [Custom Stock Widget] DOW
    Plugin Author Relevad

    (@relevad)

    Sorry, it doesn’t seem likely in the near future. Our plugin has been locked out of getting data for the Dow Jones twice now, so we disabled that functionality to prevent getting permanently blocked.

    We would have to substantially re-work how the plugin operates to be able to produce Dow Jones data that isn’t days or weeks out of date.

    If this changes, we will certainly release an update, as this is our most requested feature.

    Plugin Author Relevad

    (@relevad)

    I took a 2 week vacation, it’s hardly been months.

    Still, you’re right, we really should have the Dow Jones functioning on our stock ticker. If it were that simple, it would already be there. We originally had Dow Jones functionality, but we were blocked from our data source for making too many requests. So, rather than serving stale data that never updates, we decided to remove the Dow Jones from our plugin until such time as we can integrate a new data source.

    Unfortunately, that sort of fell by the wayside, and so here we are. Sorry that ruins the experience for you!

    Thread Starter Relevad

    (@relevad)

    Hi,

    from here: http://plugins.svn.wordpress.org/slider-image/tags/2.9.5/slider.php

    line #2016
    $plugin_info = get_plugin_data( ABSPATH . ‘wp-content/plugins/slider-image/slider.php’ );

    In version 2.9.6
    http://plugins.svn.wordpress.org/slider-image/tags/2.9.6/slider.php
    new Line number 2025

    Plugin Author Relevad

    (@relevad)

    Hello,

    Thank you for the bug report. This issue occurs because Firefox ignores the stylesheet for our widget. I have created a solution for this problem, but unfortunately I cannot release a new version of the stock widget for a few weeks.

    However, the fix is very simple and you can easily fix the code yourself. All you have to do is delete the word ‘scoped’ within the file stock_widget_display.php on line 142. That’s all!

    Change from
    <style type="text/css" scoped>

    To
    <style type="text/css">

    This will solve the problem in Firefox. Let me know if you have any trouble getting this to work and I will be happy to help.

    Plugin Author Relevad

    (@relevad)

    Correction:

    for LSE.L
    elseif($data_item == "LSE.L"){$data_item = "London Stock Exchange";}

    for ^FHCI
    elseif($data_item == "^FCHI"){$data_item = "CAC 40";}

    Plugin Author Relevad

    (@relevad)

    Yes and no. I was working to add in a feature to automatically use names instead of / in addition to symbols, but it turned out to be more than a small update, so I am saving it for a major update.

    However, there is a way to do what you want, but you have to edit the plugin file called stock_widget_display.php.

    At approximately line 300, there is a section of code that looks like this:

    if($data_item == "^GSPC") { //change the special index symbols to something more common knowledge
        $data_item = "S&P500";
    } elseif($data_item == "^IXIC") {
        $data_item = "NASDAQ";
    }

    All you have to do is add in a new line after that for each replacement you want to make. So, to add in a replacement for ^FCHI you would add a line that looks like this:

    elseif($data_item == "^FCHI"){$data_item = "London Stock Exchange";}

    So all together, it would look like this:

    if($data_item == "^GSPC") { //change the special index symbols to something more common knowledge
        $data_item = "S&P500";
    } elseif($data_item == "^IXIC") {
        $data_item = "NASDAQ";
    }
    elseif($data_item == "^FCHI"){$data_item = "London Stock Exchange";}

    And if you want to replace any more, just add more lines and change the text.

    Examples:
    elseif($data_item == "^XMPL"){$data_item = "EXAMPLE Exchange";}
    elseif($data_item == "ABCD"){$data_item = "Alphabet Soup";}

    Plugin Author Relevad

    (@relevad)

    Hi again k2,

    I have found a potential solution. Looking at your test page, it seems the plugin correctly refreshes our ticker, except for one line of javascript which does not run (ticker fade in on page load). Adding the following CSS will fix it: .stock_ticker {opacity:1 !important;}

    We’ll probably put out a real fix for this in the future, but this CSS should solve your problem at present.

    Plugin Author Relevad

    (@relevad)

    Looks like both of those work.

    LSE.L — London Stock Exchange
    ^FCHI — CAC40

    One of the ways to find out the correct ticker symbols is to do a web search for “yahoo finance <company_name>”. Yahoo finance seems to more often give working results for ticker symbols.

    Plugin Author Relevad

    (@relevad)

    I don’t think I ever let you know that this issue is now resolved on the latest versions of the stock widget. It will now automatically change ^GSPC into S&P500, and ^IXIC into NASDAQ.

    After updating the stock widget, if there are any other index symbols you would like to switch out, it can be done by adding more cases on line 303-304 in stock_widget_display.php

    Something like this:

    elseif($data_item == "^NYA") {$data_item = "NYSE";}
    elseif($data_item == "^ABCD") {$data_item = "Alphabet";}

    would convert ^NYA or ^ABCD into NYSE or Alphabet, respectively.

Viewing 15 replies - 16 through 30 (of 93 total)