I want to add a live chat session in my WordPress website, I am using managed web hosting for wordpress, do I need to add the custom script of is there any plugin available for WordPress websites?
I want to make a forum, where the user X have only 3-5 topics created, also I want to limit him to 2-3 replies in this 3-5 threads created by the limited user. Limit should last year.
I wondering if there is a plugin developer, which can make such plugin.
Hello there! My name is Dave and I recently started using Codoforum. I need a litte bit of help, cuz' I'm kinda new.
I'm trying to find a way to use colors for each role in part. I found a plugin on GitHub, but I have no idea if it works, how to install it. (LINK: [codoforum-colored-roles] ) If there is another way using colors for roles, I would be very happy to hear some opinions.
Hi guys, I use elgg 2.3 and plugin with Freichat. The installation is fine but when I started to configure for any menu like Client side. I can't. It is blank like in the picture. can you tell me what I did wrong?
I am trying to create a plugin and created a 1.0.php in the install folder to create a database, but this database is not created. Since i already activated the plugin before this install file was available i am wondering if the install php file will run each time i activate the plugin or only the first time. And it is only run once (on inital activation) how can i get the install to run in a later stadium?
I am trying to create a plugin which show content in the block_topic_info_after UI element, but i see this block is not displayed on mobile. Is there a way to get it visible or linked on a mobile view ?
The forum has been integrated in a website, but the Logout button does not work. The page loaded when pressing the Logout button is index.php?u=/user/logout, inside the forum, but the page is rendered blank. The Logout link in the sso plugin seems right, but it seems is never called.
I'm developing a plugin based on uni_login (only with google) which allow to filter email adresses (a list for example). I wanted to know how is it possible to add an admin menu where I will manage my restriction list when the plugin is enabled.
I've managed to get the single-sign-on to work if I manually set the values within client.php:
$account['uid'] = 4;
$account['name'] = "John";
$account['mail'] = "here@there.com";
$account['avatar'] = ''; //not used as of now
but when I try to use anything defined elsewhere, it doesn't work, such as:
if($_SESSION['userDetails']['id']){
$account['uid'] = $_SESSION['userDetails']['id'];
$account['name'] = $_SESSION['userDetails']['username'];
$account['mail'] = $_SESSION['userDetails']['email'];
$account['avatar'] = ''; //not used as of now
}
or even just variables which I've defined in test.php called by a require statement within index.php :
$account['uid'] = $uid;
$account['name'] = $name;
$account['mail'] = $email;
$account['avatar'] = ''; //not used as of now
I've recently installed v4.2 locally (on a dev box), and am in the process of doing a major customisation exercise to integrate it with my website.
I've created three block plugins to inject stuff into layout.tpl, and I've found two bugs:
everything was being injected at the top of the page, instead of at the appropriate block tag. I tracked this down to function loadPlugin in forum/sys/CODOF/Plugin.php -- the if is the wrong way round, line 71 should be:
if ($plugin['plg_type'] !== 'plugin') {
the list of plugins is not being loaded on page (for example) forum/admin/index.php?page=ui/blocks&action=editblock&id=5 -- I haven't tracked this one down yet, but have worked around it for now by manually setting the module column in table codo_blocks.
I was able to integrated the forum by means of the SSO plugin.
However, there is an ugly effect with SSO integration. If the user has not logged in before, when the forum is loaded if loads the whole page. Then, after a few seconds, SSO calls the url on the main website to log in. If the login is OK, the whole forum is reloaded again, causing a really ugly effect on the page.
Is there a way to until the login result has been received before loading the forum? Or a way to avoid refreshing the whole page?