Search:
Search took 1.00 seconds.
-
ClassiPress uses a wrapper so I doubt this will pull any useful information out of it. Artem has built a ClassiPress code reference similar to WordPress docs.
If that doesn't help, use Chrome Dev...
-
WordPress (and ClassiPress) includes some bloat that you might not need.
The following snippets could be included to your theme functions.php file to control what is activated.
I suggest using a...
-
https://forums.appthemes.com/report-classipress-bugs/bug-yoast-96124/
-
Put this line of code in classipress/includes/plupload/app-plupload.js after line 117
It should fix this annoying bug until, hopefully it will be merged in the Development / Stable Version.
...
-
Talent, I'm not the OP but here is what it looks like on my iPhone 6 similar to what the other picture shows. This is in Chrome, Safari seems to work.
16245
-
worked flawless on ie10 and ie11 . no issues with alignment . nice job
-
On a BlackBerry Z10 with standard browser (Safari I believe) in both landscape and horizontal it looks good. No problems in the form or shape, switch between horizontal and landscape very smooth.
-
Hello everyone,
I currently concentrating me protect my website ClassiPress because ClassiPress is often attacked ClassiPress ...
But I will come to realize that when we go on the profile of the...
-
1.) In rare exceptions, PHP and SQL code can cause speed issues, mostly in the writing query snippets.
2.) Nginx is slightly faster than Apache by about 16% at most. Hosting providers can install...
-
@vjlamba please disable the "Async JS and CSS" plugin ( https://wordpress.org/plugins/async-js-and-css/ ) which is outdated and doing some weird things with scripts and styles.
-
As the post title states.
I do quite a lot of front end testing and in general - messing around with my install trying to fix things or break things (usually the case).
Like most people using...
-
Hi everyone,
As FabTalent mentioned in a closed thread - There is a risk of loosing your footer on upgrade
A helpful tool if you loose your footer (or anything else) after upgrading is the WAY...
-
-
All language packs are here :
http://www.appthemes.com/support/languages/classipress/
http://www.appthemes.com/support/languages/
http://www.appthemes.com/blog/how-to...rdpress-theme/
To...
-
Hi
On my website it is working fine.
-
Hi!
in wp-content/themes/classipress/framework/app-plupload/app-plupload.php
look 'multi_selection' => false, change to 'multi_selection' => true,
See you!
-
Hi talent, i use templatic geoplaces
-
post this to functions.php
function remove_generator() {
remove_action( 'wp_head', 'cp_generator' );
remove_action( 'wp_head', 'wp_generator' );
}
add_action('after_setup_theme',...
-
to let you know there will be a fix in the next release.
the fix is not the same as i posted here but have the same affect.
-
Edit the file and delete or comment out what she has quoted above
-
Hi all,
I have done something similar on my site, which was actually very easy.
First, I created a custom field called "Price Type" with options such as "each", "total", "per hour" and so on....
-
this should work:
function my_function($args) {
$args['posts_per_page'] = 50;
return $args;
}
add_filter('cp_featured_slider_args', 'my_function');
-
Figured it out again!
Note: I will post the changes I made for the community, but let me first get my template complete, If you need something from one of my messages, ex: search feature or...
-
Can vouch for this.
http://www.nextscripts.com/social-ne...for-wordpress/
Works spot on
-
Found a solution, please try this and update. Its working fine for me.
Add this custom function to your theme-functions.php file. This function returns the category heirarchy.
function...