easetock
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Query posts and Post Nav link doesnt work togetherTake a look at this: https://weblogtoolscollection.com/archives/2008/04/19/paging-and-custom-wordpress-loops/
I have used this to query posts and it finally worked out well with pagination:
<?php query_posts(‘cat=1′.’&paged=’.$paged); ?>Forum: Fixing WordPress
In reply to: cforms II not contactingWell, open source is not an ideal world because every plugin has its own logics you have to figure out. And this address thing could have been corrected automatically by the plugin itself (on another server it did, actually).
I am not a web developer but a web designer, so I don’t get happy if I have to correct stuff somewhere deep in the system files. WordPress is still much better than for instance Joomla, but I guess you have to take time to figure things out when you’re doing a project.
Forum: Fixing WordPress
In reply to: cforms II not contactingHey! I was just about to start banging my head against the wall because of the same problem, when I found the answer.
You can also check it here: https://www.ads-software.com/support/topic/167557
What you need to do is go to the folder where you have cforms installed: /wpcontent/plugins/cforms
There you have to open cforms.js and change line 6 from this:
var sajax_uri = ‘/wp-content/plugins/cforms/lib_ajax.php’;
into this:
var sajax_uri = ‘https://yourwebsiteadsress.com/wp-content/plugins/cforms/lib_ajax.php’;
You just have to add the address of your site so that the plugin knows where to open the lib_ajax.php file.
Did it help? A stupid problem actually which could have been solved much better. But hey – open source is not an ideal world.
Forum: Developing with WordPress
In reply to: Custom Comment FieldsI was trying to add some extra fields in the comment section as well but it is not possible – also with cformsII not becuase the commenting system has a limited amount of fields. Does anybody have a solution on how to add some more into WordPress?