DurdenBlog
Forum Replies Created
-
Forum: Plugins
In reply to: [Wise Chat] Wise Chat Pro / Weird behaviour when chattingI checked the CSS and I observed that the “data-chat-user-id” is the same, so it would be normal (and I presumed that it’s the default behaviour) that all his messages showed on the same side in the chat.
What is the issue ?
Forum: Hacks
In reply to: I can not retrieve a specific portion of an HTML file (blog post) with AJAXOk.. I’ve found a way to fix my problem.
I really don’t know if it’s the right way to do but it works.. so for that moment I will use this code.I’ve changed this :
modal =$('<div />', { html: data, class: settings.modal }).append(close); body.prepend(shade, modal); };
To this :
modal =$('<div />', { html: $('#modalAjax', $(data)), class: settings.modal }).append(close); body.prepend(shade, modal); };
So now, it returns me only the div #modalAjax instead of my full single.php code.
Forum: Hacks
In reply to: I can not retrieve a specific portion of an HTML file (blog post) with AJAXHi @ancawonka,
Thank you for this informations. However, would you have a tutorial, or can I have a little help from you to solve my problem?
It turns out that I am not at all familiar with WordPress :/ This is the first time I build a theme. The code that I have shared in my first comment runs on WordPress but recovers me all of my single.php file (header + content in my div #postContainer + footer). I would like to recover only the contents of my div #postContainer.
I need help for example to create a function in my function.php file that only get my content on my single.php file and then specify it in my js file.
Thank you.. and sorry for my lack of knowledge.
No one can help me ?
Forum: Themes and Templates
In reply to: [Hueman] Twitter button missing from social share barWoow.. thank you so much !
Forum: Themes and Templates
In reply to: [Hueman] Twitter button missing from social share barTwitter removed the share-count API on November 20th. That’s why it’s no longer working. See: https://blog.twitter.com/2015/hard-decisions-for-a-sustainable-platform
I’m trying to find a solution. Maybe someone have a tip ?