It’s my birthday this week.
So I set up a discount code of 37% (yes, I’m old) on every item in my store, for one week, just put “birthdayforeveryone” at checkout. WordPress Themes, Universal Coppermine Theme, Affiliationally Plugin, everything.
It’s my birthday this week.
So I set up a discount code of 37% (yes, I’m old) on every item in my store, for one week, just put “birthdayforeveryone” at checkout. WordPress Themes, Universal Coppermine Theme, Affiliationally Plugin, everything.
Since June 2018, you can get some individual WordPress fansite themes, highly customizable, here at Inspirationally.net. Here’s the list of features and installing instructions. Find instructions for the Inspirationally Universal Coppermine Theme here.
The Inspirationally Themes come with the following features:
As with every theme, go to your Appearance -> Themes section, upload the Zip and activate the theme.
Inspirationally Themes come with a lot of features to make you life as easy as possible. After activating the theme, go to your Appearance -> Customize section
The header image will automatically get the right look for the theme. You don’t need photoshop! Just upload the image and after cropping it to the right size directly inside WordPress it’ll automatically change its look in the theme.
With choosing the main color you can make your theme as individual as possible. However, there are some suggestions to get a nice look already.
In some themes you can can also set the primary menu position to either the very top, above the header image or under the header image.
the Gallery Menu will allow you to show or hide a Coppermine gallery menu in your main menu. Most important links will automatically be added. Do not forget to add the right gallery URL (without trailing slash)
These will for sure make your life easier. Here, in the Fansite options, you can do many many customisations.
All themes come with 3 widget sections. One at the top, one in the sidebar, one at the bottom.
Customize to your needs, as long as the link back to inspirationally.net in the footer remains intact. Use it for all of your owned or co-owned sites, but don’t give it away if you adopt the site out or sell it.
Usually this page is in Euro, because I’m European. Because of Halloween arriving soon, I decided to make some “dollar weeks” so that you can buy the Affiliationally WordPress plugin in dollar until Halloween. This saves you at about 15-20%, depending on your living place and the daily conversion rate.
For using this Halloween “discount”, just order as usual. You just pay automatically in dollars instead Euro.
Psst…Fancrave members can save additional percents…
There was a problem with the Affiliationally Script working on the servers of fan-host.org showing errors other servers ignored due to strict mode. So here’s an update to version 1.4.6 that should work on mysql set to strict mode, too.
The update is NOT mandatory, but if you want to upgrade, it is enough to replace add.php, index.php, functions.php and create.php.
Listing Admin is great, but there are some bugs and not php 7.3. compatible.
For php 7.3. compatibility there are just some minor changes needed. On lesser versions, you will just get “Error: mysqli depracated warnings” in your error_log
To solve this mysql issue, you can put this into your jac.inc.php instead (unfortunately you can’t just simply replace all mysql with mysqli), from
/**
* Get MySQL link!
*/
till the very bottom of the file, put this:
/**
* Get MySQL link! (updated to mysqli by inspirationally)
*/
$connect = mysqli_connect($database_host, $database_user, $database_pass,$database_name)
or die(‘<p><span class=”error”>Error:</span> You cannot currently connect to MySQL.’ .
‘ Make sure all variables are correct in <samp>rats.inc.php</samp>; if it is a random’ .
‘ error, wait it out and see if it\’ll magically disappear.</p>’);
$database = mysqli_select_db($connect,$database_name)
or die(‘<p><span class=”error”>Error:</span> You cannot currently connect to your database.’ .
‘ Make sure all variables are correct in <samp>rats.inc.php</samp>; if it is a random’ .
‘ error, wait it out and see if it\’ll magically disappear.</p>’);/**
* Aaaaaa-aaa-and run query~!
*/
$select = “SELECT `text` FROM `$_ST[options]` WHERE `name` = ‘adm_path’ LIMIT 1”;
$true = mysqli_query($connect,$select);
if($true == false) {
exit(“<p class=\”errorButton\”><span class=\”error\”>ERROR:</span> Unable to select the specified option.” .
” Make sure your options table exists.</p>\n”);
}
$getItem = mysqli_fetch_array($true);
define(‘STPATH’, $getItem[‘text’]);
?>
Now it should be mysqli compatible.
Additionally, there are some minor bugs, that I solved with this:
Error: When trying to delete a joined listing, clicking the delete button under “action” shows this error:
Fatal error: Call to a member function cleanMys() on a non-object in /home/user/public_html/listingadmin/joined.php on line 512
Solution:
in joined.php in line 512, find
$id = $listingadmin->cleanMys($_GET[‘d’]);
replace it with
$id = $tigers->cleanMys($_GET[‘d’]);
Error: the pagination on the admin joined page does not work
Solution:
around line 222 change
if($pages > 10) {
to
if($pages > 1) {
around line 202 ff. change to
$this->range = 10;
$this->page = !isset($_GET[‘p’]) || !is_numeric($_GET[‘p’]) ? 1 :
$tigers->cleanMys($_GET[‘p’]);
$this->next = $this->page + 1;
$this->prev = $start – 1;
around line 230 change
if($this->page != 1) {
to
if($this->page != 1 && $this->page > 6) {
add https:// check
it’s in file listings.php Line 744 change
if(strpos($url, ‘http://’) === false) {
to
if((strpos($url, ‘http://’) === false && strpos($url, ‘https://’) === false)){
line 1291 change
if(strstr($url, ‘http://’) === false) {
to
if((strpos($url, ‘http://’) === false && strpos($url, ‘https://’) === false)){
unsolved:
Take part of the Easter Egg Hunt and save up to 30% on the Affiliationally WordPress Plugin!!! Just visit the Affiliationally WordPress plugin tutorial pages, find the three easter eggs and put the codes into the discount code field when you check out. Each egg will be 10% off. This will work till Easter Monday!
Instructions (install, import, use)
Happy Easter!
With selling some themes, scripts and plugins not to make a life, but to get in a bit of the domain and webspace costs of fansites and collectives, the fansites world was shocked, when sellfy introduced their new 15$ the month professional plan with the addition
P.S. Professional plan will apply to all new users right away. You will be able to enjoy the old pricing until the end of the year – Dec 31st, 2016 or upgrade at any time.
With 15$ being not even the revenue of a whole year this is of course insane and eliminates hobby theme/script coders from further participation there.
Which is the reason why I decided to switch to Easy Digital Downloads before the year ends and share with you how to do this. (more…)
This is, additionally to the shortcodes section in your WordPress affiliationally section, a detailed description with examples of the Affiliationally shortcodes you can use in your site. (more…)
Here some detailed instructions on how to install, import and use the Affiliationally WP plugin
You can add css code to your theme’s style.css to style the affiliate links in a certain way. These are just some examples of what is possible, and it depends on your theme’s css to get them working. (more…)