Dream Catcher
Forum Replies Created
-
Forum: Plugins
In reply to: [Sweet Custom Menu] jQuery Uncaught TypeErrorReplace all the .live call with .bind
- This reply was modified 4 years, 2 months ago by Dream Catcher.
Forum: Plugins
In reply to: [OneSignal - Web Push Notifications] Sending AdditionalData from wordpressHi, yes I did and got it working sorry forgot to reply back here.
Forum: Plugins
In reply to: [OnePress Opt-In Panda] Locker Preview BugHi, I found out this is because of my server modsecurity settings blocking optinpanda.
Have you had experience with this previously or can you direct me to a link where I could solve this?
I currently have mod security disabled on my domain via cpanel to use this plugin.
Forum: Plugins
In reply to: [Gmedia Photo Gallery] No Coverart/Thumbnail In ThemeOkay gotcha,
Can you tell me though why does the Gmedia Base show every file uploaded?
Do I also have to create a custom post type for it to avoid that?
I was thinking it would show gmedia categories under the Gmedia Base, is that possible?
Forum: Plugins
In reply to: [Gmedia Photo Gallery] No Coverart/Thumbnail In ThemeIs there a reference guide on create gmedia custom post-type template in themes?
Forum: Plugins
In reply to: [Gmedia Photo Gallery] No Coverart/Thumbnail In ThemeI did that but it seems that I need to add gmedia custom post type to my theme so it shows the featured image in the archives template for albums.
- This reply was modified 7 years, 10 months ago by Dream Catcher.
Forum: Plugins
In reply to: [Menu Icons by ThemeIsle] Add DripIconsOkay thanks, I saw the guide but wasn’t sure if it was for other icon types as well. Will try it out. Thanks for a great plugin as well.
Forum: Plugins
In reply to: [Simple Parse Push Service] Open push urlI’ve partially solved this problem on my end as I can get the uri of my blog sent in the push notification I edited the pushFunctionality.php in the plugin folder and added $posturl = get_the_permalink(); then added $posturl to the data array.
$posturl = get_the_permalink(); $url = 'https://api.parse.com/1/push/'; $data = array( 'expiry' => 1451606400, 'data' => array( 'alert' => $AlertMessage, 'badge' => $Badge, 'uri' => $posturl, ), );
Now I can open my blog post link from the push notification but not in my app but the android default browser rendered to hand http requests.
I’ve made a custom Receiver to handle the onPushOpen and this is where I’m stuck as I’ve done this but it not working for me.
Forum: Plugins
In reply to: [Simple Parse Push Service] Open push urlI’ve come across this information
public void onReceive (Context context, Intent intent) { try { String articleId = intent.getAction(); JSONObject json = new JSONObject(intent.getExtras().getString("com.parse.Data")); String int = json.getString("action"); Intent i = new Intent(Intent.ACTION_VIEW); i.setData(myCoolAdress.com/?p=/\"articleId"); context.ApplicationContext().startActivity(i); } catch (JSONException e) { Log.d(TAG, "JSONException: " + e.getMessage()); } }
Although I’m still getting errors
Forum: Plugins
In reply to: [Vanilla Forums] WordPress 4.0 and Vanilla Forums Plugin?It seems the latest version of Vanilla forums and the plugin works but you first have to go to your vanilla dashboard and enabled embedding for the sync to work.
Okay Thanks