Forum Replies Created
-
AuthorPosts
-
alexadarkMember
Hi, finally we found a solution making a redirection and appending the title with jquery
not superclean, but it works, and client happy!
This type of thing seems easy, but really complex at the end.
for one time i think i should have been easier with classic wordpress.
i'm curious to know if the " clean" solution!
http://www.sarah.webstantly.com/?n=x
if you're interested i can pass you the code for that, can always be usefull
the real site is here: http://www.thinkcreatelive.com/
under maintenance for the momentThanks for trying to help me, don't hesitate to contact me if you need something 🙂
alexadarkMemberhttp://www.sarah.webstantly.com/?s=asdasd
the search with no results
as it is now, with this title that i have already implemented, but with the same content (feed of posts + projects as the home)
i'm going to test my friend solution,and pass you the code if you are interested, or ask for more help if i don;t succedalexadarkMemberI just have somebody helping me
i keep you informedalexadarkMemberhttp://www.sarah.webstantly.com/
this the demo, the real site is http://www.thinkcreatelive.com/
but she has a maintenance
i can send you the access in privatealexadarkMemberHi,
i have no answer from sridhar or other.
perhaps a friend will help me.
but the client absolutely wants that.
so tell me of you can help and your conditionsThanks
alexadarkMemberYes i hope!
i have sent him the access this morning, as he answered me at midnight my time
i will keep you informedAnyway thank you and good night!
I have to avoid this type of client, but you don't always know before 🙁
alexadarkMemberthe dead line is asap, she wanted the project in 2 weeks, and saturday it will be 3 weeks, because of all the deatils she si not happy with, and where i need other developers
i know sridhar is also looking the project
just tell me what you can do!
you can contact me on skype : webstantly
i'm europe, it's noon hereThanks!
alexadarkMemberBecause it is a super picky client, and don't want to make concessions to anything, neither give more money.
i have already did more work than the budget.
but it's a client i have from codeable (https://codeable.io/) where i am a contractor, and has she asked that since the beginning, ia m obliged to do it 🙁
how much would be your price to do that ?alexadarkMemberThank you Jamie, but this is not what my client wants, she wants exactly the same content as the home page (feed of all posts and CPT projects) with that at the top:
UNFORTUNATELY, THERE’S NOTHING MATCHING THAT PHRASE. SEARCH AGAIN OR BROWSE BELOW
alexadarkMemberHI, yes i have tried that:
<?php add_action('genesis_loop','wst_nosearch_loop'); function wst_nosearch_loop { global $paged; // accepts any wp_query args $args = (array( 'post_type' => 'post, projects', 'paged' => $paged, 'posts_per_page' => 10 )); }
and it gives an error
i have tried a wp_Query , and it gives a blank page
// WP_Query arguments $args = array ( 'name' => 'post, projects', 'pagination' => true, 'posts_per_page' => '10', ); // The Query $query = new WP_Query( $args ); // The Loop if ( $query->have_posts() ) { while ( $query->have_posts() ) { $query->the_post(); // do something } } else { // no posts found } // Restore original Post Data wp_reset_postdata();
alexadarkMemberJust found this plugin: https://wordpress.org/plugins/post-type-archive-links/
🙂alexadarkMemberThanks Sridhar,
i have seen all that, and understood, but don't know why don't work with genesis_get_image , anyway i will keep the_post_thumbnail for this site; and will use it on the nextAnother question, when you make an archive page for a CPT, how do you link this page in the menu ?
a part putting an absolute link, which is not very good when you transfer sites...alexadarkMemberWell i'm trying to use genesis_get_image, but don't work...or don't know how to write it...
<div class="featured-image"> <?php genesis_get_image(array ('size' => 'featured-big')); ?> </div>
alexadarkMemberThank you very much Carrie, that's help a lot 🙂
so i will use the genesis functions, but as i understand there can be coding preferences
i prefer escaping php, as it's more readable with the code coloring etc...
🙂alexadarkMemberthis is on your site 😉 http://wpsites.net/web-design/display-featured-image-before-or-after-entry-title-on-single-posts-pages/
the other code is my way of writingalexadarkMemberFYI it was because of a plugin!
after checking all the files of my version and new version, i know it cannot be in the theme, then i deactivated all plugins (then the footer was ok), and then reactivated one by one...but it works too, so i don't know which is guilty!alexadarkMemberThe thing is i have begin this site with version 2.1 of enterprise pro, and not 2.1.1, and i really thing there is a bug in 2.1, as i try the same on a site i've done with it but with no customisations (only some css colors) and have the same problem
The problem is that site is totally customised so i cannot update to 2.1.1
i thought that child theme are never updated
i think i need somebody from studiopress to tell me what are the modifications in 2.1.1 to correct the bug.I have also tryed to register my own widgets areas, and same problem!
alexadarkMemberAh ah ah, i'm in the same, and you are more advanced than me!
i have to look at all your genesis tutorials to really master genesis, i'm also studying deeply woocommerce customisation , to build plugins...what else...never ending story, but i love it.
I have let grunt as i can use codekit and it's really simpler 🙂But sass and susy it's really great! http://www.zell-weekeat.com/learnsusy/
alexadarkMemberStrange,
i have also tried it on another install of enterprise pro, and same problem
perhaps the theme has been updated in between, but as i have made lot of customisations i cannot update it, so i think i will delete this function and register my own footer widgets areas, it will be simpler
For css i prefer to use sass and susy grid, you should try susy is great and you write lessalexadarkMemberThanks,
but has genesis-footer-widgets seems to be a genesis function i don't know where to check that.
if it was outside genesis i will have no problem to modify it (i use also underscore as starter theme) as i can see the html markup, but here o don't know from where this markup is generated so i don't know where to fix it, that's the problem 🙁If i cannot find the solution, i'm thinking to delete this widgets area, and create new one myself, but i'm sure somebody has already have this issue and know how to fix it
-
AuthorPosts