luispic
Forum Replies Created
-
That was my question, how to “generate” all that shortcode:
[MultipleMarkerMap id=… ]
But from what I understand I need the lattitude and longitude coordinates right? now, where do I get them from? I see google maps has changed, the bookmarks don’t show the coordinates anymore, I’m now installing google earth to see if I’m able to get them, but that was essentially my question, if there was some sort of ‘shortcode’ maker where I could select the region for zoom and icon for marker.
thanks for the reply!
and it worked for you? niiiice! thanks for sharing!
I talked to the developer and it seems like this is an upcoming feature, so you can do two things:
1. Lower the amount of “default posts” on your wordpress:
Settings > reading > maximum amount of post : <enter your desired value>2. Create a new category that handles all the “featured” projects like I did in this site: https://www.estudioink.com the lower projects are the featured in home projects.
hope it helps! :cheers:
@themella sure, what do you need to know?
if the link leads to a undefined page, you might be defining it wrong. do you have a link?
You’re probably right Steven, but you have to keep in mind that the plugin is free after all, and I can personally say that I lack the ability to develop a plugin like this (or to fix it since it’s open source), so the mere fact that the developer cares enough to share something I can use, and is as good as it is is very appreciated.
@tylercollins1986
Glad to hear that it did work ??Have you read my solution? Mine is working, check it out: https://www.estudioink.com/portafolio
:cheers:
PS. I talked to the developer and he’s planning on releasing a v2.0 where this will work.
Thanks @andrea_r this worked out perfectly for me too!
:cheers:
Have you tried sending the $args as the third variable on your simple_portfolio_query_projects function?
<?php $args = array('numberposts' => 50); simple_portfolio_query_projects(null,null,$args); ?>
best of luck!
Can you people believe that this doesn’t work on my live site?! grrrr! the function
get_post_type()
isn’t returning any value on my live site!!
*I better laugh now*…
Forum: Fixing WordPress
In reply to: simple portfolio plugin and current_page_parent problemHi everyone, I found a nice simple solution, although I agree it isn’t the “most efficient one”
First I’ve modified the header.php to include a css file to load once detected on the portfolio page:
<?php if ( 'portfolio' == get_post_type() ) { ?> <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('template_url'); ?>/css/portfolio.css" /> <?php } ?>
Second I added this to my portfolio.css file:
#menu-item-47{ font-weight: bold; }
I got the #menu-item-47 id using firebug so it will work only on my website, but be sure to change it to what ever ID your website has, and it will from that you can apply whatever style you want on your portfolio page.
If anyone has a nicer solution it’s very welcome I know my solution isn’t as fancy but you don’t have to modify any source code, wordpress’ nor the plugin’s.
Hi everyone, I found a nice simple solution, although I agree it isn’t the “more eficient one”
First I’ve modified the header.php to include a css file to load once detected on the portfolio page:
<?php if ( 'portfolio' == get_post_type() ) { ?> <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('template_url'); ?>/css/portfolio.css" /> <?php } ?>
Second I added this to my portfolio.css file:
#menu-item-47{ font-weight: bold; }
I got the #menu-item-47 id using firebug so it will work only on my website, but be sure to change it to what ever ID your website has, and it will from that you can apply whatever style you want on your portfolio page.
If anyone has a nicer solution it’s very welcome I know my solution isn’t as fancy but you don’t have to modify any source code, wordpress’ nor the plugin’s.
:cheers: all the way down from Guatemala
Forum: Fixing WordPress
In reply to: simple portfolio plugin and current_page_parent problemwhat kind of notification? are you using the simple portfolio plugin?
Please post in the correct thread.Forum: Fixing WordPress
In reply to: simple portfolio plugin and current_page_parent problemSeems like it’s a very common problem, same is with me I want to load a specific css when ever we’re in the portfolio page:
<?php if (is_page_template('portfolio.php') ) { ?> <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('template_url'); ?>/css/portfolio.css" /> <?php } ?>
and still nothing..
Anyone found a solution yet?
I have the same problem here, anyone found a solution?