MCM
Forum Replies Created
-
Forgot to resolve, thanks again.
e.g. I have category called Accmodation.
https://www.MYWEBSITE.com/directory/dir-cat/self-catering-accommodation/
If I then select a place, the URL = /directory/34836/
It does not ??
I am more aware of this now because I read about SEO benefits regarding post titles.
I am actively keeping up with your plugin ??
latest version. wp 3.4.1 and BD 2.1.2
I have latest of everything.
I will be buying the Google Map Module soon, just waiting for my refund.
A final concern before I resolve this…
The wording on your website reads “This module allows your businesses that list in Business Directory to have a Google Map for their address. You can map the address fields from any field you’ve added in the Manage Form Fields section”
From what we have been discussing your Google module can concatenate a number of fields to create a ADDRESS that it will use to generate the map, does this still stand as the wording above implies reading from a single field?
Thanks again. I am using your CSV and to confirm this is what I am going to do, please let me know if it makes sense.
The plugin is looking better and works with php 5.4.4 nice work. I bought wp local plus and needless to say I am trying to get a refund!
1. I intend buying Google Module, Regional Module and properly the ratings one.
2. I have businesses/organisations in South Africa that I would like to list, thus the location of a place is different to states and everywhere else
3. So, I was thinking of preparing the fields as follows in anticipation of your regional module and Google maps module, before buying I want to have assurance things will work
FIELDS
1. Address e.g. 1 Sunny Street
2. Suburb/Area
3. City/Town – Cape Town
4. Province – I think this would be similar to your State
5. Country – South AfricaSo, if I made the effort to prepare my CSV files with that format with respect to the locations, would that bode well for your Google maps and regional control modules?
O, and if one buys one module now, would there be a discount for buying another module later?
I ask because you have two modules discount combos, but I do not require anything of those others as I am running a free directory, also because I am buying in a dramatically weaker currency :). 1 dollar for me equals 8 South Africa Rands ??
Okay, so for now I can build a directory without worrying about the location and then once your regional module is built I will be able to assign listings to a city/region or whatever?
I see you have a google map module, how does this fit in with the regional module, as surely that module needs a location textbox to get the address from?
Okay, so I see you guys are working on a location filter. NOW tell me this, if I begin to build my directory using your plugin, how do I AVOID re-work once your location feature is working?
i.e. My country is broken up into provinces then Towns/Cities etc.
If I have a business A under say FOOD, should I have a category for towns and another one for provinces.
I want to start building my directory without the risk of re-work once your plugin comes with a location feature.
Please can you advise soonest what is the best way to move forward?
Forum: Plugins
In reply to: [podPress] [Plugin: podPress] 100 mp3s on a pageThanks for the response
capeproducer, I have read your sentence a few times. I am not sure what you are saying.
I would like to have a Category say FOOD with sub-cats, say A and another cat B.
On coming to the Directory page, ALL I want to have is the ability for uses to filter by LOCATION.
e.g. select State/Province which then filters down to Cities/Towns (ALL option ofcourse) which then filters down to Suburbs
THEN he/she select Cat A or Cat B and gets what they looking for.
does anybody have code that I can try? I am going to start googling this all, if I get it write I will share it.
In terms of the drilling down effect, the reason for that is I can re-use the Location hierarchy if i want to add more sections later on.
I am in the southern hemisphere, what does end of summer mean for you? August/September/Oct?
Forum: Fixing WordPress
In reply to: Code getting automatically written to Functions.phpSite is clean, 3 plugins, 2 themes. I cannot locate a function (SEARCH in all files for _checkactive_widgets ) throughout the website.
Forum: Fixing WordPress
In reply to: Code getting automatically written to Functions.phpI went through the pains of trying to figure this all out.
Virus/Worm spoke with ISP etc, NOTHING.
Then I found I just needed to add this line of code to the functions.php file and all is well.
if (!function_exists('_checkactive_widgets')) { // do nothing }
Now, is this definitely not a WordPress issue?
The following is from this link
https://museumthemes.com/wordpress/fixed-redeclare-checkactivewidgets-error-wordpress-child-themes/
“WordPress will add the check for widgets to your functions.php (if it exists) no matter what unless you explicitly tell it not to. If you really wanted to, you could change the permissions of your functions.php and make it read-only, although I don’t know off the top of my head how that might affect the functionality of your theme. If there is no functions.php in your child theme, you don’t need to worry, but if you’re going to add your own custom functions (and, let’s face it, that’s probably 99% of the reason we want to build child themes, right?), you’ll need to add some method for handling WordPress automatically trying to add in the active widgets check. Based on what information they have in the Codex on Child Themes, the most correct way of dealing with this issue is just to say “if this function exists already, don’t do anything” and that will prevent WordPress from duplicating your code.”
I tested the following on my PHP 5.4.3 on my local machine.
All the changes had to be done in files in the api/ folder.Software:= xampp-win32-1.8.0-usb-lite-beta13
Files – form-fields.php, payments.php
Format below
A – Line Number
B – Before
C – Afterform-fields.php
A – 456
B – if ($this->isValidField($field, &$errors)) { :
C – if ($this->isValidField($field, $errors)) {A – Line 494
B – echo $this->render(&$field, $value, false);
C – echo $this->render($field, $value, false);A – Line 503
B – public function render_textfield(&$field, value=null) {
C – public function render_textfield(&$field, $value=null) {payments.php
A – line 142
B- if ($this->is_valid_fee($fee, &$errors)) {
C – if ($this->is_valid_fee($fee, $errors)) {PS: Yes, I removed the excess database records and all is well ??