cyclonecode
Forum Replies Created
-
Forum: Plugins
In reply to: [Cision Block] .cision-feed-pager and ‘Read More’ buttonCan you try to enable
WP_DEBUGin youwp-config.phpfile and see if you receive a descriptive error message. It seems like there is some problem with the actual query string i.e?cb_id=cision_block&cb_page=1, since this only happens when you have this in the url.It is very hard to say what is going on without a more descriptive error message. I have never seen this before and that is the reason why I am thinking that it has something todo with one of your installed plugins or perhaps some specific configuration with you wordpress installation.
If you have root access to your server, perhaps you could check the web servers log files and see if they contains any more information; if you are running apache then these files will probably be located under the
/var/log/apache2directory.If you could give me access to either the server (best would be ssh access) or perhaps create a wordpress account I think I would be able to check why this is happening. If you create an account or give me ssh access please send login credentials to cyclonecode@gmail.com
Regards
Forum: Plugins
In reply to: [Cision Block] .cision-feed-pager and ‘Read More’ buttonHello again Silvia
Sorry, for my late response. You block does not seem to use the actual settings you posted above. Could you please go to the configuration page for cision-block and copy your current configuration from that page?
By the way, make sure so that you have put your entire shortcode on a single row (without linebreaks) e.g:
[cision-block id=”example_block” source_uid=”734556E76B7944D3841C88011A35449E” language=”en” date_format=”m-d-Y” readmore=”Read more” regulatory=”true” count=”6″ items_per_page=”2″ tags=”cision,company” types=”PRM, RDV” start=”2016-01-12″ end=”2019-01-12″ image_style=”DownloadUrl” flush=”false”]or else it will not work as expected.
Regards,
KristerForum: Plugins
In reply to: [Cision Block] .cision-feed-pager and ‘Read More’ buttonHello again
It seems like there might be some other plugin which interferes with the cision-block plugin? Can you please give me a list of your current activated plugins and it would also be great if you could copy the cision-block settings. Since, you are running the latest version you should have a textarea where the entire configuration is displayed, copy this so I can try to figure out what is going on.
One last question, how do you add the cision-block shortcode? Are you using a widget ordo_shortcode()in your theme?You can add me on Skype: https://join.skype.com/invite/pssjBP98xreQ
- This reply was modified 7 years, 6 months ago by cyclonecode.
Forum: Plugins
In reply to: [Cision Block] .cision-feed-pager and ‘Read More’ buttonHello Silvia
1) I am not really sure what the problem is? Seems very strange. Do you have a test page where I can actually see this behavior?
2) The ‘read more’ button should open up a separate tab to the pressrelease in the news room in cision e.ghttps://news.cision.com/<article>. Like I said above would be great if you can give me an URL where I can see what’s not working.Another question: Which version of the plugin are you running?
Regards,
KristerForum: Plugins
In reply to: [Cision Block] Feed is not displaying the newest regulatory postThis problem was related to a couple of different issues:
- The “Regulatory” checkbox was checked, the number of feed items were set to 1 and the number of items per page was also set to 1. The following setup would not rendering anything unless the first feed item actually was regulatory.
- We also found a bug in the widget, the “Feed source id” was never used, instead always the default settings for this field was used, which might have triggered some invalid results. This is now fixed in version 1.4.9.1
- This reply was modified 7 years, 7 months ago by cyclonecode.
Forum: Plugins
In reply to: [Cision Block] Feed is not displaying the newest regulatory postHello Adam
This seems very strange. Have you checked so the older feed items is one of the type(s) you have selected at the configuration page? Would be great if you could send me your feed in json format and I will check what is going on.
You can use the following URL to retrieve your feed:Replace FEED_IDENTIFIER above to the unique id of your feed, go to the page and save it and email me at cyclonecode@gmail.com, would be great if you also could include your current settings from the “Cision Block Settings” page.
Regarding your other question: “And also, we would like to display both regulatory AND regular posts in our feed. How can we accomplish that?”
One way to do this would be to use two separate blocks at to different pages:
<!-- only displays regulatory releases --> [cision-block regulatory=true] <!-- display all releases --> [cision-block]If you are up for adding code, then you could also use the supplied template
cision-block.phpand check in the loop if an item is regulatory or not:if ($item->IsRegulatory): <!-- this item is regulatory --> else: <!-- not a regulatory item --> endif;Forum: Plugins
In reply to: [Cision Block] Possible to have more than 1 identifier?Hello again
You should now be able to use the new shortcode attribute source_uid (available since version 1.4.6) to specify separate feed identifiers for your blocks. If not source_uid attribute is used in the shortcode the default one from the actual cision block settings page will be used. Notice that you also might need to use the language shortcode attribute if you have configured a language in the settings page for the plugin. Here is an example:
[cision-block source_uid=A275C0BF733048FFAE9126ACA64DD08F]
- This reply was modified 7 years, 9 months ago by cyclonecode.
- This reply was modified 7 years, 9 months ago by cyclonecode.
Forum: Plugins
In reply to: [Cision Block] Possible to have more than 1 identifier?Hello, right now this is not possible, but I could add another argument that could be used with the cision-block shortcode to solve this. I will let you know when this is implemented =)
Forum: Plugins
In reply to: [Cision Block] Suggestion regarding date formatI have changed the description for start and end date as suggested.
Forum: Plugins
In reply to: [Cision Block] Suggestion regarding date formatHello Tor-bjorn
Thank you for your input. I will look into updating the descriptions for the date format. I will also read up on how best practices when it comes to translation of plugins.
Regards
Forum: Plugins
In reply to: [Cision Block] Fatal error URGENTHello Daniel
This error was triggered due to the fact that the Cision::displayFeed() method expecting an array and if we are using a shortcode without any arguments it will only be passed an empty string. For instance: [cision-block] triggered the error, while [cision-block flush=true] didn’t.
I have made an update so this problem should now be resolved. Please update to the latest version 1.4.4Best Regards
- This reply was modified 8 years, 1 month ago by cyclonecode.
- This reply was modified 8 years, 1 month ago by cyclonecode.
Forum: Plugins
In reply to: [Cision Block] Possible to create multiple cision blocks?Hi again @whirre. I have made an update to the plugin and added a new shortcode attribute types, which can be used to override the type of feed items to display:
[cision-block count=5 items_per_page=1 types=”PRM, RDV” flush=true]
Check out the readme for a complete list of the different kind of pressreleases.
Forum: Plugins
In reply to: [Cision Block] Possible to create multiple cision blocks?Hi @whirre, at the moment this is not possible. I will look into this as soon as I have time and keep you posted.
Best Regards